diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 00000000..2513ef9d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,38 @@ +name: Feature request +description: Request a new feature +labels: "enhancement" +body: + - type: markdown + attributes: + value: | + Thank you for taking the time to let us know what gget is missing! + - type: dropdown + id: request-type + attributes: + label: Request type + description: Are you requesting the extension of an existing module or a new module? + options: + - Extension of existing module + - New module + validations: + required: true + - type: textarea + id: description + attributes: + label: Request description + description: Please describe your request. + placeholder: Include links to references/databases if applicable. + validations: + required: true + - type: textarea + id: command + attributes: + label: Example command + description: Please provide an example command as you envision it. + render: shell + - type: textarea + id: command-output + attributes: + label: Example return value + description: Please describe what the above-mentioned command should return. + placeholder: What is the most important information? Which format would be most useful? diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml new file mode 100644 index 00000000..e8b5f34d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -0,0 +1,73 @@ +name: Issue / Bug Report +description: Create a report to help us improve +body: + - type: markdown + attributes: + value: | + Thank you for taking the time to fill out this report and help us improve! :) + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Please provide a clear and concise description of what the issue is. + validations: + required: true + - type: textarea + id: version + attributes: + label: gget version + description: Which version of gget are you using? + placeholder: 0.27.2 + validations: + required: true + - type: dropdown + id: os + attributes: + label: Operating System (OS) + description: Which Operating System (OS) did you use? + multiple: true + options: + - Linux + - macOS + - Windows + - Other (please specify above) + - Not applicable + validations: + required: true + - type: dropdown + id: interface + attributes: + label: User interface + description: Did the problem occur when calling gget from the command-line or Python? (Select all that apply.) + multiple: true + options: + - Command-line + - Python + - Google Colab (please include a shareable link above) + - R (please specify Python wrapper above) + - Not applicable + validations: + required: true + - type: dropdown + id: m1 + attributes: + label: Are you using a computer with an Apple M1 chip? + description: We are asking this because the M1 chip has been causing [problems](https://github.com/pachterlab/gget/issues/30) for some `gget alphafold` dependencies. + options: + - Not M1 + - M1 + - Not applicable + validations: + required: true + - type: textarea + id: command + attributes: + label: What is the exact command that was run? + description: Please copy-paste the gget command that caused the problem. + render: shell + - type: textarea + id: command-output + attributes: + label: Which output/error did you get? + description: Please copy-paste the complete output/error returned by the command entered above. + render: shell diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..673b86fb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,31 @@ +name: CI + +on: + schedule: + - cron: "0 16 * * 1,4" + push: + paths: + - 'gget/**' + - 'tests/**' + +jobs: + build: + runs-on: ubuntu-22.04 + strategy: + fail-fast: false + matrix: + python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + os: ['ubuntu-22.04'] + name: Test on Python ${{ matrix.python }} + steps: + - name: Checkout branch + uses: actions/checkout@main + - name: Setup python + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python }} + architecture: x64 + - name: Install dependencies + run: pip install -r requirements.txt && pip install -r dev-requirements.txt + - name: Run tests + run: coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..4684debd --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,36 @@ +name: Deploy +on: + push: + branches: + - main + + paths: + - 'docs/**' + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Install mdbook + run: | + mkdir mdbook + curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.34/mdbook-v0.4.34-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook + echo `pwd`/mdbook >> $GITHUB_PATH + - name: Deploy GitHub Pages + run: | + cd docs/ + mdbook build + git worktree add gh-pages + git config user.name "Deploy from CI" + git config user.email "" + cd gh-pages + # Delete the ref to avoid keeping history. + git update-ref -d refs/heads/gh-pages + rm -rf * + mv ../book/* . + git add . + git commit -m "Deploy $GITHUB_SHA to gh-pages" + git push --force --set-upstream origin gh-pages diff --git a/.github/workflows/traffic.yml b/.github/workflows/traffic.yml new file mode 100644 index 00000000..bbee0d49 --- /dev/null +++ b/.github/workflows/traffic.yml @@ -0,0 +1,33 @@ +name: Traffic +on: + schedule: + # Runs every week + - cron: "0 0 */7 * *" + +jobs: + # This workflow stores repository traffic and clones past the default 2 week period + traffic: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + ref: "traffic" + + # Calculates traffic and clones and stores them in a CSV file + # This workflow is based on https://github.com/marketplace/actions/repository-traffic + - name: GitHub traffic + uses: sangonzal/repository-traffic-action@v.0.1.6 + env: + TRAFFIC_ACTION_TOKEN: ${{ secrets.TRAFFIC_ACTION_TOKEN }} + + # Commits files to traffic branch + - name: Commit changes + uses: EndBug/add-and-commit@v4 + with: + author_name: Laura Luebbert + message: "GitHub traffic" + add: "./traffic/*" + ref: "traffic" diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0645fb62 --- /dev/null +++ b/.gitignore @@ -0,0 +1,142 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Mac OS file that stores custom attributes of its containing folder +.DS_Store + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST +/gget/elm_files/ + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# PyCharm +/.idea/ + +# mdbook documentation +/docs/book/ + +# Scratch directory +/scratch/ diff --git a/404.html b/404.html new file mode 100644 index 00000000..9f87e18b --- /dev/null +++ b/404.html @@ -0,0 +1,219 @@ + + + + + + Page not found - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Document not found (404)

+

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

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/FontAwesome/css/font-awesome.css b/FontAwesome/css/font-awesome.css new file mode 100644 index 00000000..540440ce --- /dev/null +++ b/FontAwesome/css/font-awesome.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/FontAwesome/fonts/FontAwesome.ttf b/FontAwesome/fonts/FontAwesome.ttf new file mode 100644 index 00000000..35acda2f Binary files /dev/null and b/FontAwesome/fonts/FontAwesome.ttf differ diff --git a/FontAwesome/fonts/fontawesome-webfont.eot b/FontAwesome/fonts/fontawesome-webfont.eot new file mode 100644 index 00000000..e9f60ca9 Binary files /dev/null and b/FontAwesome/fonts/fontawesome-webfont.eot differ diff --git a/FontAwesome/fonts/fontawesome-webfont.svg b/FontAwesome/fonts/fontawesome-webfont.svg new file mode 100644 index 00000000..855c845e --- /dev/null +++ b/FontAwesome/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/FontAwesome/fonts/fontawesome-webfont.ttf b/FontAwesome/fonts/fontawesome-webfont.ttf new file mode 100644 index 00000000..35acda2f Binary files /dev/null and b/FontAwesome/fonts/fontawesome-webfont.ttf differ diff --git a/FontAwesome/fonts/fontawesome-webfont.woff b/FontAwesome/fonts/fontawesome-webfont.woff new file mode 100644 index 00000000..400014a4 Binary files /dev/null and b/FontAwesome/fonts/fontawesome-webfont.woff differ diff --git a/FontAwesome/fonts/fontawesome-webfont.woff2 b/FontAwesome/fonts/fontawesome-webfont.woff2 new file mode 100644 index 00000000..4d13fc60 Binary files /dev/null and b/FontAwesome/fonts/fontawesome-webfont.woff2 differ diff --git a/ayu-highlight.css b/ayu-highlight.css new file mode 100644 index 00000000..32c94322 --- /dev/null +++ b/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/book.js b/book.js new file mode 100644 index 00000000..351e28c7 --- /dev/null +++ b/book.js @@ -0,0 +1,682 @@ +"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 html = document.querySelector("html"); + 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() { + html.classList.remove('sidebar-hidden') + html.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() { + html.classList.remove('sidebar-visible') + html.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 (html.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 (html.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); + html.classList.add('sidebar-resizing'); + } + function resize(e) { + var pos = (e.clientX - sidebar.offsetLeft); + if (pos < 20) { + hideSidebar(); + } else { + if (html.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) { + html.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; } + + switch (e.key) { + case 'ArrowRight': + e.preventDefault(); + var nextButton = document.querySelector('.nav-chapters.next'); + if (nextButton) { + window.location.href = nextButton.href; + } + break; + case 'ArrowLeft': + e.preventDefault(); + var previousButton = document.querySelector('.nav-chapters.previous'); + if (previousButton) { + window.location.href = previousButton.href; + } + 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/clipboard.min.js b/clipboard.min.js new file mode 100644 index 00000000..02c549e3 --- /dev/null +++ b/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;n .hljs { + color: var(--links); +} + +/* + body-container is necessary because mobile browsers don't seem to like + overflow-x on the body tag when there is a tag. +*/ +#body-container { + /* + This is used when the sidebar pushes the body content off the side of + the screen on small screens. Without it, dragging on mobile Safari + will want to reposition the viewport in a weird way. + */ + overflow-x: clip; +} + +/* Menu Bar */ + +#menu-bar, +#menu-bar-hover-placeholder { + z-index: 101; + margin: auto calc(0px - var(--page-padding)); +} +#menu-bar { + position: relative; + display: flex; + flex-wrap: wrap; + background-color: var(--bg); + border-bottom-color: var(--bg); + border-bottom-width: 1px; + border-bottom-style: solid; +} +#menu-bar.sticky, +.js #menu-bar-hover-placeholder:hover + #menu-bar, +.js #menu-bar:hover, +.js.sidebar-visible #menu-bar { + position: -webkit-sticky; + position: sticky; + top: 0 !important; +} +#menu-bar-hover-placeholder { + position: sticky; + position: -webkit-sticky; + top: 0; + height: var(--menu-bar-height); +} +#menu-bar.bordered { + border-bottom-color: var(--table-border-color); +} +#menu-bar i, #menu-bar .icon-button { + position: relative; + padding: 0 8px; + z-index: 10; + line-height: var(--menu-bar-height); + cursor: pointer; + transition: color 0.5s; +} +@media only screen and (max-width: 420px) { + #menu-bar i, #menu-bar .icon-button { + padding: 0 5px; + } +} + +.icon-button { + border: none; + background: none; + padding: 0; + color: inherit; +} +.icon-button i { + margin: 0; +} + +.right-buttons { + margin: 0 15px; +} +.right-buttons a { + text-decoration: none; +} + +.left-buttons { + display: flex; + margin: 0 5px; +} +.no-js .left-buttons { + display: none; +} + +.menu-title { + display: inline-block; + font-weight: 200; + font-size: 2.4rem; + line-height: var(--menu-bar-height); + text-align: center; + margin: 0; + flex: 1; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.js .menu-title { + cursor: pointer; +} + +.menu-bar, +.menu-bar:visited, +.nav-chapters, +.nav-chapters:visited, +.mobile-nav-chapters, +.mobile-nav-chapters:visited, +.menu-bar .icon-button, +.menu-bar a i { + color: var(--icons); +} + +.menu-bar i:hover, +.menu-bar .icon-button:hover, +.nav-chapters:hover, +.mobile-nav-chapters i:hover { + color: var(--icons-hover); +} + +/* Nav Icons */ + +.nav-chapters { + font-size: 2.5em; + text-align: center; + text-decoration: none; + + position: fixed; + top: 0; + bottom: 0; + margin: 0; + max-width: 150px; + min-width: 90px; + + display: flex; + justify-content: center; + align-content: center; + flex-direction: column; + + transition: color 0.5s, background-color 0.5s; +} + +.nav-chapters:hover { + text-decoration: none; + background-color: var(--theme-hover); + transition: background-color 0.15s, color 0.15s; +} + +.nav-wrapper { + margin-top: 50px; + display: none; +} + +.mobile-nav-chapters { + font-size: 2.5em; + text-align: center; + text-decoration: none; + width: 90px; + border-radius: 5px; + background-color: var(--sidebar-bg); +} + +.previous { + float: left; +} + +.next { + float: right; + right: var(--page-padding); +} + +@media only screen and (max-width: 1080px) { + .nav-wide-wrapper { display: none; } + .nav-wrapper { display: block; } +} + +@media only screen and (max-width: 1380px) { + .sidebar-visible .nav-wide-wrapper { display: none; } + .sidebar-visible .nav-wrapper { display: block; } +} + +/* Inline code */ + +:not(pre) > .hljs { + display: inline; + padding: 0.1em 0.3em; + border-radius: 3px; +} + +:not(pre):not(a) > .hljs { + color: var(--inline-code-color); + overflow-x: initial; +} + +a:hover > .hljs { + text-decoration: underline; +} + +pre { + position: relative; +} +pre > .buttons { + position: absolute; + z-index: 100; + right: 0px; + top: 2px; + margin: 0px; + padding: 2px 0px; + + color: var(--sidebar-fg); + cursor: pointer; + visibility: hidden; + opacity: 0; + transition: visibility 0.1s linear, opacity 0.1s linear; +} +pre:hover > .buttons { + visibility: visible; + opacity: 1 +} +pre > .buttons :hover { + color: var(--sidebar-active); + border-color: var(--icons-hover); + background-color: var(--theme-hover); +} +pre > .buttons i { + margin-left: 8px; +} +pre > .buttons button { + cursor: inherit; + margin: 0px 5px; + padding: 3px 5px; + font-size: 14px; + + border-style: solid; + border-width: 1px; + border-radius: 4px; + border-color: var(--icons); + background-color: var(--theme-popup-bg); + transition: 100ms; + transition-property: color,border-color,background-color; + color: var(--icons); +} +@media (pointer: coarse) { + pre > .buttons button { + /* On mobile, make it easier to tap buttons. */ + padding: 0.3rem 1rem; + } +} +pre > code { + padding: 1rem; +} + +/* FIXME: ACE editors overlap their buttons because ACE does absolute + positioning within the code block which breaks padding. The only solution I + can think of is to move the padding to the outer pre tag (or insert a div + wrapper), but that would require fixing a whole bunch of CSS rules. +*/ +.hljs.ace_editor { + padding: 0rem 0rem; +} + +pre > .result { + margin-top: 10px; +} + +/* Search */ + +#searchresults a { + text-decoration: none; +} + +mark { + border-radius: 2px; + padding: 0 3px 1px 3px; + margin: 0 -3px -1px -3px; + background-color: var(--search-mark-bg); + transition: background-color 300ms linear; + cursor: pointer; +} + +mark.fade-out { + background-color: rgba(0,0,0,0) !important; + cursor: auto; +} + +.searchbar-outer { + margin-left: auto; + margin-right: auto; + max-width: var(--content-max-width); +} + +#searchbar { + width: 100%; + margin: 5px auto 0px auto; + padding: 10px 16px; + transition: box-shadow 300ms ease-in-out; + border: 1px solid var(--searchbar-border-color); + border-radius: 3px; + background-color: var(--searchbar-bg); + color: var(--searchbar-fg); +} +#searchbar:focus, +#searchbar.active { + box-shadow: 0 0 3px var(--searchbar-shadow-color); +} + +.searchresults-header { + font-weight: bold; + font-size: 1em; + padding: 18px 0 0 5px; + color: var(--searchresults-header-fg); +} + +.searchresults-outer { + margin-left: auto; + margin-right: auto; + max-width: var(--content-max-width); + border-bottom: 1px dashed var(--searchresults-border-color); +} + +ul#searchresults { + list-style: none; + padding-left: 20px; +} +ul#searchresults li { + margin: 10px 0px; + padding: 2px; + border-radius: 2px; +} +ul#searchresults li.focus { + background-color: var(--searchresults-li-bg); +} +ul#searchresults span.teaser { + display: block; + clear: both; + margin: 5px 0 0 20px; + font-size: 0.8em; +} +ul#searchresults span.teaser em { + font-weight: bold; + font-style: normal; +} + +/* Sidebar */ + +.sidebar { + position: fixed; + left: 0; + top: 0; + bottom: 0; + width: var(--sidebar-width); + font-size: 0.875em; + box-sizing: border-box; + -webkit-overflow-scrolling: touch; + overscroll-behavior-y: contain; + background-color: var(--sidebar-bg); + color: var(--sidebar-fg); +} +.sidebar-resizing { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} +.js:not(.sidebar-resizing) .sidebar { + transition: transform 0.3s; /* Animation: slide away */ +} +.sidebar code { + line-height: 2em; +} +.sidebar .sidebar-scrollbox { + overflow-y: auto; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + padding: 10px 10px; +} +.sidebar .sidebar-resize-handle { + position: absolute; + cursor: col-resize; + width: 0; + right: 0; + top: 0; + bottom: 0; +} +.js .sidebar .sidebar-resize-handle { + cursor: col-resize; + width: 5px; +} +.sidebar-hidden .sidebar { + transform: translateX(calc(0px - var(--sidebar-width))); +} +.sidebar::-webkit-scrollbar { + background: var(--sidebar-bg); +} +.sidebar::-webkit-scrollbar-thumb { + background: var(--scrollbar); +} + +.sidebar-visible .page-wrapper { + transform: translateX(var(--sidebar-width)); +} +@media only screen and (min-width: 620px) { + .sidebar-visible .page-wrapper { + transform: none; + margin-left: var(--sidebar-width); + } +} + +.chapter { + list-style: none outside none; + padding-left: 0; + line-height: 2.2em; +} + +.chapter ol { + width: 100%; +} + +.chapter li { + display: flex; + color: var(--sidebar-non-existant); +} +.chapter li a { + display: block; + padding: 0; + text-decoration: none; + color: var(--sidebar-fg); +} + +.chapter li a:hover { + color: var(--sidebar-active); +} + +.chapter li a.active { + color: var(--sidebar-active); +} + +.chapter li > a.toggle { + cursor: pointer; + display: block; + margin-left: auto; + padding: 0 10px; + user-select: none; + opacity: 0.68; +} + +.chapter li > a.toggle div { + transition: transform 0.5s; +} + +/* collapse the section */ +.chapter li:not(.expanded) + li > ol { + display: none; +} + +.chapter li.chapter-item { + line-height: 1.5em; + margin-top: 0.6em; +} + +.chapter li.expanded > a.toggle div { + transform: rotate(90deg); +} + +.spacer { + width: 100%; + height: 3px; + margin: 5px 0px; +} +.chapter .spacer { + background-color: var(--sidebar-spacer); +} + +@media (-moz-touch-enabled: 1), (pointer: coarse) { + .chapter li a { padding: 5px 0; } + .spacer { margin: 10px 0; } +} + +.section { + list-style: none outside none; + padding-left: 20px; + line-height: 1.9em; +} + +/* Theme Menu Popup */ + +.theme-popup { + position: absolute; + left: 10px; + top: var(--menu-bar-height); + z-index: 1000; + border-radius: 4px; + font-size: 0.7em; + color: var(--fg); + background: var(--theme-popup-bg); + border: 1px solid var(--theme-popup-border); + margin: 0; + padding: 0; + list-style: none; + display: none; + /* Don't let the children's background extend past the rounded corners. */ + overflow: hidden; +} +.theme-popup .default { + color: var(--icons); +} +.theme-popup .theme { + width: 100%; + border: 0; + margin: 0; + padding: 2px 20px; + line-height: 25px; + white-space: nowrap; + text-align: left; + cursor: pointer; + color: inherit; + background: inherit; + font-size: inherit; +} +.theme-popup .theme:hover { + background-color: var(--theme-hover); +} + +.theme-selected::before { + display: inline-block; + content: "✓"; + margin-left: -14px; + width: 14px; +} diff --git a/css/general.css b/css/general.css new file mode 100644 index 00000000..a6db6805 --- /dev/null +++ b/css/general.css @@ -0,0 +1,204 @@ +/* Base styles and content styles */ + +@import 'variables.css'; + +:root { + /* Browser default font-size is 16px, this way 1 rem = 10px */ + font-size: 62.5%; + color-scheme: var(--color-scheme); +} + +html { + font-family: "Open Sans", sans-serif; + color: var(--fg); + background-color: var(--bg); + text-size-adjust: none; + -webkit-text-size-adjust: none; +} + +body { + margin: 0; + font-size: 1.6rem; + overflow-x: hidden; +} + +code { + font-family: var(--mono-font) !important; + font-size: var(--code-font-size); +} + +/* make long words/inline code not x overflow */ +main { + overflow-wrap: break-word; +} + +/* make wide tables scroll if they overflow */ +.table-wrapper { + overflow-x: auto; +} + +/* Don't change font size in headers. */ +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + font-size: unset; +} + +.left { float: left; } +.right { float: right; } +.boring { opacity: 0.6; } +.hide-boring .boring { display: none; } +.hidden { display: none !important; } + +h2, h3 { margin-top: 2.5em; } +h4, h5 { margin-top: 2em; } + +.header + .header h3, +.header + .header h4, +.header + .header h5 { + margin-top: 1em; +} + +h1:target::before, +h2:target::before, +h3:target::before, +h4:target::before, +h5:target::before, +h6:target::before { + display: inline-block; + content: "»"; + margin-left: -30px; + width: 30px; +} + +/* This is broken on Safari as of version 14, but is fixed + in Safari Technology Preview 117 which I think will be Safari 14.2. + https://bugs.webkit.org/show_bug.cgi?id=218076 +*/ +:target { + scroll-margin-top: calc(var(--menu-bar-height) + 0.5em); +} + +.page { + outline: 0; + padding: 0 var(--page-padding); + margin-top: calc(0px - var(--menu-bar-height)); /* Compensate for the #menu-bar-hover-placeholder */ +} +.page-wrapper { + box-sizing: border-box; +} +.js:not(.sidebar-resizing) .page-wrapper { + transition: margin-left 0.3s ease, transform 0.3s ease; /* Animation: slide away */ +} + +.content { + overflow-y: auto; + padding: 0 5px 50px 5px; +} +.content main { + margin-left: auto; + margin-right: auto; + max-width: var(--content-max-width); +} +.content p { line-height: 1.45em; } +.content ol { line-height: 1.45em; } +.content ul { line-height: 1.45em; } +.content a { text-decoration: none; } +.content a:hover { text-decoration: underline; } +.content img, .content video { max-width: 100%; } +.content .header:link, +.content .header:visited { + color: var(--fg); +} +.content .header:link, +.content .header:visited:hover { + text-decoration: none; +} + +table { + margin: 0 auto; + border-collapse: collapse; +} +table td { + padding: 3px 20px; + border: 1px var(--table-border-color) solid; +} +table thead { + background: var(--table-header-bg); +} +table thead td { + font-weight: 700; + border: none; +} +table thead th { + padding: 3px 20px; +} +table thead tr { + border: 1px var(--table-header-bg) solid; +} +/* Alternate background colors for rows */ +table tbody tr:nth-child(2n) { + background: var(--table-alternate-bg); +} + + +blockquote { + margin: 20px 0; + padding: 0 20px; + color: var(--fg); + background-color: var(--quote-bg); + border-top: .1em solid var(--quote-border); + border-bottom: .1em solid var(--quote-border); +} + +kbd { + background-color: var(--table-border-color); + border-radius: 4px; + border: solid 1px var(--theme-popup-border); + box-shadow: inset 0 -1px 0 var(--theme-hover); + display: inline-block; + font-size: var(--code-font-size); + font-family: var(--mono-font); + line-height: 10px; + padding: 4px 5px; + vertical-align: middle; +} + +:not(.footnote-definition) + .footnote-definition, +.footnote-definition + :not(.footnote-definition) { + margin-top: 2em; +} +.footnote-definition { + font-size: 0.9em; + margin: 0.5em 0; +} +.footnote-definition p { + display: inline; +} + +.tooltiptext { + position: absolute; + visibility: hidden; + color: #fff; + background-color: #333; + transform: translateX(-50%); /* Center by moving tooltip 50% of its width left */ + left: -8px; /* Half of the width of the icon */ + top: -35px; + font-size: 0.8em; + text-align: center; + border-radius: 6px; + padding: 5px 8px; + margin: 5px; + z-index: 1000; +} +.tooltipped .tooltiptext { + visibility: visible; +} + +.chapter li.part-title { + color: var(--sidebar-fg); + margin: 5px 0px; + font-weight: bold; +} + +.result-no-output { + font-style: italic; +} diff --git a/css/print.css b/css/print.css new file mode 100644 index 00000000..27d05e92 --- /dev/null +++ b/css/print.css @@ -0,0 +1,46 @@ + +#sidebar, +#menu-bar, +.nav-chapters, +.mobile-nav-chapters { + display: none; +} + +#page-wrapper.page-wrapper { + transform: none; + margin-left: 0px; + overflow-y: initial; +} + +#content { + max-width: none; + margin: 0; + padding: 0; +} + +.page { + overflow-y: initial; +} + +pre > .buttons { + z-index: 2; +} + +a, a:visited, a:active, a:hover { + color: #4183c4; + text-decoration: none; +} + +h1, h2, h3, h4, h5, h6 { + page-break-inside: avoid; + page-break-after: avoid; +} + +pre, code { + page-break-inside: avoid; + white-space: pre-wrap; +} + +.fa { + display: none !important; +} diff --git a/css/variables.css b/css/variables.css new file mode 100644 index 00000000..59fcda88 --- /dev/null +++ b/css/variables.css @@ -0,0 +1,265 @@ + +/* Globals */ + +:root { + --sidebar-width: 300px; + --page-padding: 15px; + --content-max-width: 750px; + --menu-bar-height: 50px; + --mono-font: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace; + --code-font-size: 0.875em /* please adjust the ace font size accordingly in editor.js */ +} + +/* Themes */ + +.ayu { + --bg: hsl(210, 25%, 8%); + --fg: #c5c5c5; + + --sidebar-bg: #14191f; + --sidebar-fg: #c8c9db; + --sidebar-non-existant: #5c6773; + --sidebar-active: #ffb454; + --sidebar-spacer: #2d334f; + + --scrollbar: var(--sidebar-fg); + + --icons: #737480; + --icons-hover: #b7b9cc; + + --links: #0096cf; + + --inline-code-color: #ffb454; + + --theme-popup-bg: #14191f; + --theme-popup-border: #5c6773; + --theme-hover: #191f26; + + --quote-bg: hsl(226, 15%, 17%); + --quote-border: hsl(226, 15%, 22%); + + --table-border-color: hsl(210, 25%, 13%); + --table-header-bg: hsl(210, 25%, 28%); + --table-alternate-bg: hsl(210, 25%, 11%); + + --searchbar-border-color: #848484; + --searchbar-bg: #424242; + --searchbar-fg: #fff; + --searchbar-shadow-color: #d4c89f; + --searchresults-header-fg: #666; + --searchresults-border-color: #888; + --searchresults-li-bg: #252932; + --search-mark-bg: #e3b171; + + --color-scheme: dark; +} + +.coal { + --bg: hsl(200, 7%, 8%); + --fg: #98a3ad; + + --sidebar-bg: #292c2f; + --sidebar-fg: #a1adb8; + --sidebar-non-existant: #505254; + --sidebar-active: #3473ad; + --sidebar-spacer: #393939; + + --scrollbar: var(--sidebar-fg); + + --icons: #43484d; + --icons-hover: #b3c0cc; + + --links: #2b79a2; + + --inline-code-color: #c5c8c6; + + --theme-popup-bg: #141617; + --theme-popup-border: #43484d; + --theme-hover: #1f2124; + + --quote-bg: hsl(234, 21%, 18%); + --quote-border: hsl(234, 21%, 23%); + + --table-border-color: hsl(200, 7%, 13%); + --table-header-bg: hsl(200, 7%, 28%); + --table-alternate-bg: hsl(200, 7%, 11%); + + --searchbar-border-color: #aaa; + --searchbar-bg: #b7b7b7; + --searchbar-fg: #000; + --searchbar-shadow-color: #aaa; + --searchresults-header-fg: #666; + --searchresults-border-color: #98a3ad; + --searchresults-li-bg: #2b2b2f; + --search-mark-bg: #355c7d; + + --color-scheme: dark; +} + +.light { + --bg: hsl(0, 0%, 100%); + --fg: hsl(0, 0%, 0%); + + --sidebar-bg: #fafafa; + --sidebar-fg: hsl(0, 0%, 0%); + --sidebar-non-existant: #aaaaaa; + --sidebar-active: #1f1fff; + --sidebar-spacer: #f4f4f4; + + --scrollbar: #8F8F8F; + + --icons: #747474; + --icons-hover: #000000; + + --links: #20609f; + + --inline-code-color: #301900; + + --theme-popup-bg: #fafafa; + --theme-popup-border: #cccccc; + --theme-hover: #e6e6e6; + + --quote-bg: hsl(197, 37%, 96%); + --quote-border: hsl(197, 37%, 91%); + + --table-border-color: hsl(0, 0%, 95%); + --table-header-bg: hsl(0, 0%, 80%); + --table-alternate-bg: hsl(0, 0%, 97%); + + --searchbar-border-color: #aaa; + --searchbar-bg: #fafafa; + --searchbar-fg: #000; + --searchbar-shadow-color: #aaa; + --searchresults-header-fg: #666; + --searchresults-border-color: #888; + --searchresults-li-bg: #e4f2fe; + --search-mark-bg: #a2cff5; + + --color-scheme: light; +} + +.navy { + --bg: hsl(226, 23%, 11%); + --fg: #bcbdd0; + + --sidebar-bg: #282d3f; + --sidebar-fg: #c8c9db; + --sidebar-non-existant: #505274; + --sidebar-active: #2b79a2; + --sidebar-spacer: #2d334f; + + --scrollbar: var(--sidebar-fg); + + --icons: #737480; + --icons-hover: #b7b9cc; + + --links: #2b79a2; + + --inline-code-color: #c5c8c6; + + --theme-popup-bg: #161923; + --theme-popup-border: #737480; + --theme-hover: #282e40; + + --quote-bg: hsl(226, 15%, 17%); + --quote-border: hsl(226, 15%, 22%); + + --table-border-color: hsl(226, 23%, 16%); + --table-header-bg: hsl(226, 23%, 31%); + --table-alternate-bg: hsl(226, 23%, 14%); + + --searchbar-border-color: #aaa; + --searchbar-bg: #aeaec6; + --searchbar-fg: #000; + --searchbar-shadow-color: #aaa; + --searchresults-header-fg: #5f5f71; + --searchresults-border-color: #5c5c68; + --searchresults-li-bg: #242430; + --search-mark-bg: #a2cff5; + + --color-scheme: dark; +} + +.rust { + --bg: hsl(60, 9%, 87%); + --fg: #262625; + + --sidebar-bg: #3b2e2a; + --sidebar-fg: #c8c9db; + --sidebar-non-existant: #505254; + --sidebar-active: #e69f67; + --sidebar-spacer: #45373a; + + --scrollbar: var(--sidebar-fg); + + --icons: #737480; + --icons-hover: #262625; + + --links: #2b79a2; + + --inline-code-color: #6e6b5e; + + --theme-popup-bg: #e1e1db; + --theme-popup-border: #b38f6b; + --theme-hover: #99908a; + + --quote-bg: hsl(60, 5%, 75%); + --quote-border: hsl(60, 5%, 70%); + + --table-border-color: hsl(60, 9%, 82%); + --table-header-bg: #b3a497; + --table-alternate-bg: hsl(60, 9%, 84%); + + --searchbar-border-color: #aaa; + --searchbar-bg: #fafafa; + --searchbar-fg: #000; + --searchbar-shadow-color: #aaa; + --searchresults-header-fg: #666; + --searchresults-border-color: #888; + --searchresults-li-bg: #dec2a2; + --search-mark-bg: #e69f67; + + --color-scheme: light; +} + +@media (prefers-color-scheme: dark) { + .light.no-js { + --bg: hsl(200, 7%, 8%); + --fg: #98a3ad; + + --sidebar-bg: #292c2f; + --sidebar-fg: #a1adb8; + --sidebar-non-existant: #505254; + --sidebar-active: #3473ad; + --sidebar-spacer: #393939; + + --scrollbar: var(--sidebar-fg); + + --icons: #43484d; + --icons-hover: #b3c0cc; + + --links: #2b79a2; + + --inline-code-color: #c5c8c6; + + --theme-popup-bg: #141617; + --theme-popup-border: #43484d; + --theme-hover: #1f2124; + + --quote-bg: hsl(234, 21%, 18%); + --quote-border: hsl(234, 21%, 23%); + + --table-border-color: hsl(200, 7%, 13%); + --table-header-bg: hsl(200, 7%, 28%); + --table-alternate-bg: hsl(200, 7%, 11%); + + --searchbar-border-color: #aaa; + --searchbar-bg: #b7b7b7; + --searchbar-fg: #000; + --searchbar-shadow-color: #aaa; + --searchresults-header-fg: #666; + --searchresults-border-color: #98a3ad; + --searchresults-li-bg: #2b2b2f; + --search-mark-bg: #355c7d; + } +} diff --git a/elasticlunr.min.js b/elasticlunr.min.js new file mode 100644 index 00000000..94b20dd2 --- /dev/null +++ b/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.5 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];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();o + + + + + gget alphafold - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget alphafold 🪢

+

Predict the 3D structure of a protein from its amino acid sequence using a simplified version of DeepMind’s AlphaFold2 originally released and benchmarked for AlphaFold Colab.
+Returns: Predicted structure (PDB) and alignment error (json).

+

Before using gget alphafold for the first time:

+
    +
  1. Install the third-party dependency openmm v7.5.1 (or v7.7.0 for Python >= 3.10) by running the following command from the command line:
    +conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1
    +(replace with openmm=7.7.0 for Python >= 3.10)
    +Recommendation: Follow with conda update -qy conda to update conda to the latest version afterwards.
  2. +
  3. Run gget setup alphafold / gget.setup("alphafold") once (also see gget setup). Running gget setup alphafold / gget.setup("alphafold") will download and install the latest version of AlphaFold2 hosted on the AlphaFold GitHub Repo. You can rerun this command any time to update the software after a new AlphaFold release.
  4. +
+

Positional argument
+sequence
+Amino acid sequence (str), or list of sequences (gget alphafold will automatically use the multimer model if multiple sequences are passed), or path to FASTA file.

+

Optional arguments
+-mr --multimer_recycles
+The multimer model will continue recycling until the predictions stop changing, up to the limit set here. Default: 3.
+For higher accuracy, at the potential cost of longer inference times, set this to 20.

+

-o --out
+Path to folder to save prediction results in (str). Default: "./[date_time]_gget_alphafold_prediction".

+

Flags
+-mfm --multimer_for_monomer
+Use multimer model for a monomer.

+

-r --relax
+AMBER relax the best model.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

plot
+Python only. plot=True provides an interactive, 3D graphical overview of the predicted structure and alignment quality using py3Dmol and matplotlib (default: True).

+

show_sidechains
+Python only. show_sidechains=True includes side chains in the plot (default: True).

+

Example

+
# Generate new prediction from amino acid sequence
+gget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Find similar sequences deposited on the PDB for comparative analysis
+gget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality
+gget pdb 3UQ3 -o 3UQ3.pdb
+gget pdb 2K42 -o 2K42.pdb
+
+
# Python
+gget.alphafold("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH")
+
+# Find similar sequences deposited on the PDB for comparative analysis
+gget.blast("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH", database="pdbaa")
+
+# Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality
+gget.pdb("3UQ3", save=True)
+gget.pdb("2K42", save=True)
+
+

gget alphafold returns the predicted structure (PDB) and predicted alignment error (.json) in a new folder ("./[date_time]_gget_alphafold_prediction"). The use case above exemplifies how to use gget blast and gget pdb for a comparative analysis of the new prediction. PDB files can be viewed interactively in 3D online, or using programs like PyMOL or Blender. To compare two PDB files, you can use this website. The Python interface also returns interactive plots, which can be generated from the PDB and JSON as described in the gget alphafold FAQ Q4.

+ +

Tutorials

+

🔗 Google Colab tutorial

+ +

🔗 gget alphafold FAQ

+

References

+

If you use gget alphafold in a publication, please cite the following articles:

+ +

And, if applicable:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/archs4.html b/en/archs4.html new file mode 100644 index 00000000..2f4b0557 --- /dev/null +++ b/en/archs4.html @@ -0,0 +1,302 @@ + + + + + + gget archs4 - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget archs4 🐁

+

Find the most correlated genes to a gene of interest or find the gene's tissue expression atlas using ARCHS4.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+gene
+Short name (gene symbol) of gene of interest, e.g. STAT4.
+Alternatively: use flag --ensembl to input an Ensembl gene IDs, e.g. ENSG00000138378.

+

Optional arguments
+-w --which
+'correlation' (default) or 'tissue'.
+'correlation' returns a gene correlation table that contains the 100 most correlated genes to the gene of interest. The Pearson correlation is calculated over all samples and tissues in ARCHS4.
+'tissue' returns a tissue expression atlas calculated from human or mouse samples (as defined by 'species') in ARCHS4.

+

-s --species
+'human' (default) or 'mouse'.
+Defines whether to use human or mouse samples from ARCHS4.
+(Only for tissue expression atlas.)

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-e --ensembl
+Add this flag if gene is given as an Ensembl gene ID.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget archs4 ACE2
+
+
# Python
+gget.archs4("ACE2")
+
+

→ Returns the 100 most correlated genes to ACE2:

+
+ + + +
gene_symbolpearson_correlation
SLC5A10.579634
CYP2C180.576577
. . .. . .
+
+



+
gget archs4 -w tissue ACE2
+
+
# Python
+gget.archs4("ACE2", which="tissue")
+
+

→ Returns the tissue expression of ACE2 (by default, human data is used):

+
+ + + +
idminq1medianq3max
System.Urogenital/Reproductive System.Kidney.RENAL CORTEX0.1136448.2740609.69584010.5167011.21970
System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL0.1136445.9055609.57045013.2647013.83590
. . .. . .. . .. . .. . .. . .
+
+



+Check out this tutorial by Dave Tang who wrote an R script to create this figure from the gget archs4 JSON output:

+

image

+

More examples

+

References

+

If you use gget archs4 in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

    +
  • +
  • +

    Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/bgee.html b/en/bgee.html new file mode 100644 index 00000000..07b20055 --- /dev/null +++ b/en/bgee.html @@ -0,0 +1,300 @@ + + + + + + gget bgee - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget bgee 🐝

+

Fetch orthology and gene expression data from Bgee using Ensembl IDs.
+Return format: JSON/CSV (command-line) or data frame (Python).

+
+

If you are specifically interested in human gene expression data, consider using gget opentargets or gget archs4 instead. +gget bgee has less data, but supports more species.

+
+

This module was written by Sam Wagenaar.

+

Positional argument
+ens_id
+Ensembl gene ID, e.g. ENSG00000169194 or ENSSSCG00000014725.

+

Required arguments
+-t --type
+Type of data to fetch. Options: orthologs, expression.

+

Optional arguments
+-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.

+

Flags
+-csv --csv
+Command-line only. Returns the output in CSV format, instead of JSON format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Get orthologs for a gene

+
gget bgee ENSSSCG00000014725 -t orthologs
+
+
import gget
+gget.bgee("ENSSSCG00000014725", type="orthologs")
+
+

→ Returns orthologs for the gene with Ensembl ID ENSSSCG00000014725.

+
+ + + + + + +
gene_idgene_namespecies_idgenusspecies
734881hbb18355Xenopuslaevis
ENSFCAG00000038029LOC1010981599685Feliscatus
ENSBTAG00000047356LOC1071311729913Bostaurus
ENSOARG00000019163LOC1011054379940Ovisaries
ENSXETG00000025667hbg18364Xenopustropicalis
...............
+
+



+

Get gene expression data for a gene

+
gget bgee ENSSSCG00000014725 -t expression
+
+
import gget
+gget.bgee("ENSSSCG00000014725", type="expression")
+
+

→ Returns gene expression data for the gene with Ensembl ID ENSSSCG00000014725.

+
+ + + + + + +
anat_entity_idanat_entity_namescorescore_confidenceexpression_state
UBERON:0000178blood99.98highexpressed
UBERON:0002106spleen99.96highexpressed
UBERON:0002190subcutaneous adipose tissue99.70highexpressed
UBERON:0005316endocardial endothelium99.61highexpressed
UBERON:0002107liver99.27highexpressed
...............
+
+

More examples

+

References

+

If you use gget bgee in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/blast.html b/en/blast.html new file mode 100644 index 00000000..1c2d1609 --- /dev/null +++ b/en/blast.html @@ -0,0 +1,296 @@ + + + + + + gget blast - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget blast 💥

+

BLAST a nucleotide or amino acid sequence to any BLAST database.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+sequence
+Nucleotide or amino acid sequence, or path to FASTA or .txt file.

+

Optional arguments
+-p --program
+'blastn', 'blastp', 'blastx', 'tblastn', or 'tblastx'.
+Default: 'blastn' for nucleotide sequences; 'blastp' for amino acid sequences.

+

-db --database
+'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', or 'pdbnt'.
+Default: 'nt' for nucleotide sequences; 'nr' for amino acid sequences.
+More info on BLAST databases

+

-l --limit
+Limits number of hits to return. Default: 50.

+

-e --expect
+Defines the expect value cutoff. Default: 10.0.

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-lcf --low_comp_filt
+Turns on low complexity filter.

+

-mbo --megablast_off
+Turns off MegaBLAST algorithm. Default: MegaBLAST on (blastn only).

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blast("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR")
+
+

→ Returns the BLAST result of the sequence of interest. gget blast automatically detects this sequence as an amino acid sequence and therefore sets the BLAST program to blastp with database nr.

+
+ + +
DescriptionScientific NameCommon NameTaxidMax ScoreTotal ScoreQuery Cover...
PREDICTED: gamma-aminobutyric acid receptor-as...Colobus angolensis palliatusNaN336983180180100%...
. . .. . .. . .. . .. . .. . .. . ....
+
+



+BLAST from .fa or .txt file:

+
gget blast fasta.fa
+
+
# Python
+gget.blast("fasta.fa")
+
+

→ Returns the BLAST results of the first sequence contained in the fasta.fa file.

+

More examples

+

References

+

If you use gget blast in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/blat.html b/en/blat.html new file mode 100644 index 00000000..5853afa8 --- /dev/null +++ b/en/blat.html @@ -0,0 +1,276 @@ + + + + + + gget blat - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget blat 🎯

+

Find the genomic location of a nucleotide or amino acid sequence using BLAT.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+sequence
+Nucleotide or amino acid sequence, or path to FASTA or .txt file.

+

Optional arguments
+-st --seqtype
+'DNA', 'protein', 'translated%20RNA', or 'translated%20DNA'.
+Default: 'DNA' for nucleotide sequences; 'protein' for amino acid sequences.

+

-a --assembly
+'human' (hg38) (default), 'mouse' (mm39), 'zebrafinch' (taeGut2),
+or any of the species assemblies available here (use short assembly name).

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blat("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR", assembly="taeGut2")
+
+

→ Returns BLAT results for assembly taeGut2 (zebra finch). In the above example, gget blat automatically detects this sequence as an amino acid sequence and therefore sets the BLAT seqtype to protein.

+
+ +
genomequery_sizealigned_startaligned_endmatchesmismatches%_aligned...
taeGut288128877087.5...
+
+

More examples

+

References

+

If you use gget blat in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/cbio.html b/en/cbio.html new file mode 100644 index 00000000..69eefb4e --- /dev/null +++ b/en/cbio.html @@ -0,0 +1,425 @@ + + + + + + gget cbio - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cbio 📖

+

Plot cancer genomics heatmaps using data from cBioPortal using Ensembl IDs or gene names.

+

This module was written by Sam Wagenaar.

+

Positional argument
+subcommand
+Either search or plot

+ +

Find cBioPortal study IDs by keyword.
+Return format: JSON (command-line) or string list (Python).
+Note: This does not return studies with mixed cancer types.

+

Positional argument
+keywords
+Space-separated list of keywords to search for, e.g. breast lung.
+Python: Pass keywords as a list of strings.

+

plot subcommand (Python: gget.cbio_plot)

+

Plot cancer genomics heatmaps using data from cBioPortal. +Return format: PNG (command-line and Python)

+

Required arguments
+-s --study_ids
+Space-separated list of cBioPortal study IDs, e.g. msk_impact_2017 egc_msk_2023.

+

-g --genes
+Space-separated list of gene names or Ensembl IDs, e.g. NOTCH3 ENSG00000108375.

+

Optional arguments
+-st --stratification
+Column to stratify the data by. Default: tissue.
+Options:

+
    +
  • tissue
  • +
  • cancer_type
  • +
  • cancer_type_detailed
  • +
  • study_id
  • +
  • sample
  • +
+

-vt --variation_type
+Type of variation to plot. Default: mutation_occurrences.
+Options:

+
    +
  • mutation_occurrences
  • +
  • cna_nonbinary (Note: stratification must be 'sample' for this option)
  • +
  • sv_occurrences
  • +
  • cna_occurrences
  • +
  • Consequence (Note: stratification must be 'sample' for this option)
  • +
+

-f --filter
+Filter the data by a specific value in a specific column, e.g. study_id:msk_impact_2017
+Python: filter=(column, value)

+

-dd --data_dir
+Directory to store data files. Default: ./gget_cbio_cache.

+

-fd --figure_dir
+Directory to output figures. Default: ./gget_cbio_figures.

+

-fn --filename
+Filename for the output figure, relative to figure_dir. Default: auto-generated
+Python: figure_filename

+

-t --title
+Title for the output figure. Default: auto-generated
+Python: figure_title

+

-dpi --dpi
+DPI of the output figure. Default: 100.

+

Flags

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

-nc --no_confirm
+Command-line only. Skip download confirmation prompts.
+Python: Use confirm_download=True to enable download confirmation prompts.

+

-sh --show
+Show the plot in a window (automatic in Jupyter notebooks).

+

Examples

+

Find all cBioPortal studies with cancer types matching specific keywords:

+
gget cbio search esophag ovary ovarian
+
+
# Python
+import gget
+gget.cbio_search(['esophag', 'ovary', 'ovarian'])
+
+

→ Returns a list of studies with cancer types matching the keywords esophag, ovary, or ovarian.

+
['egc_tmucih_2015', 'egc_msk_2017', ..., 'msk_spectrum_tme_2022']
+
+



+

Plot a heatmap of mutation occurrences for specific genes in a specific study:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st tissue \
+    -vt mutation_occurrences \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='tissue',
+    variation_type='mutation_occurrences',
+    dpi=200
+)
+
+

→ Saves a heatmap of mutation occurrences for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_tissue.png.

+

Heatmap

+



+

Plot a heatmap of mutation types for specific genes in a specific study:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    dpi=200,
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_sample.png.

+

Heatmap

+



+

Plot a heatmap of mutation types for specific genes in a specific study, filtering by tissue:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -f tissue:intestine \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    filter=('tissue', 'intestine'),
+    dpi=200,
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, to ./gget_cbio_figures/Heatmap_sample_intestine.png.

+

Heatmap

+



+

Plot a heatmap with a custom title and filename:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -f tissue:intestine \
+    -dpi 200 \
+    -y \
+    -t "Intestinal Mutations" \
+    -fn intestinal_mutations.png
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    filter=('tissue', 'intestine'),
+    dpi=200,
+    figure_title='Intestinal Mutations',
+    figure_filename='intestinal_mutations.png'
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, with the title "Intestinal Mutations" to ./gget_cbio_figures/intestinal_mutations.png.

+

Heatmap

+

More examples

+

References

+

If you use gget cbio in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

    +
  • +
  • +

    Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

    +
  • +
  • +

    de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

    +
  • +
  • +

    Please also cite the source of the data if you are using a publicly available dataset.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/cellxgene.html b/en/cellxgene.html new file mode 100644 index 00000000..7813a350 --- /dev/null +++ b/en/cellxgene.html @@ -0,0 +1,340 @@ + + + + + + gget cellxgene - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cellxgene 🍱

+

Query data from CZ CELLxGENE Discover using the CZ CELLxGENE Discover Census. CZ CELLxGENE Discover provides ready-to-use single-cell RNA sequencing count matrices for certain tissues/diseases/genes/etc.

+

Returns: An AnnData object containing the count matrix and metadata of single-cell RNA sequencing data from the defined tissues/genes/etc.

+

Before using gget cellxgene for the first time, run gget setup cellxgene / gget.setup("cellxgene") once (also see gget setup).

+

Optional arguments
+-s --species
+Choice of 'homo_sapiens' or 'mus_musculus'. Default: 'homo_sapiens'.

+

-g --gene
+Str or list of gene name(s) or Ensembl ID(s). Default: None.
+NOTE: Use -e / --ensembl (Python: ensembl=True) when providing Ensembl ID(s) instead of gene name(s).
+See https://cellxgene.cziscience.com/gene-expression for examples of available genes.

+

-cv --census_version
+Str defining version of Census, e.g. "2023-05-15", or "latest" or "stable". Default: "stable".

+

-cn --column_names
+List of metadata columns to return (stored in AnnData.obs).
+Default: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type']
+For more options, see: https://api.cellxgene.cziscience.com/curation/ui/#/ -> Schemas -> dataset

+

-o --out
+Path to file to save generated AnnData .h5ad file (or .csv with -mo / --meta_only).
+Required when using from command line!

+

Flags
+-e --ensembl
+Use when genes are provided as Ensembl IDs instead of gene names.

+

-mo --meta_only
+Only returns metadata data frame (corresponds to AnnData.obs).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Optional arguments corresponding to CZ CELLxGENE Discover metadata attributes
+--tissue
+Str or list of tissue(s), e.g. ['lung', 'blood']. Default: None.
+See https://cellxgene.cziscience.com/gene-expression for examples of available tissues.

+

--cell_type
+Str or list of cell type (s), e.g. ['mucus secreting cell', 'neuroendocrine cell']. Default: None.
+See https://cellxgene.cziscience.com/gene-expression and select a tissue to see examples of available cell types.

+

--development_stage
+Str or list of development stage(s). Default: None.

+

--disease
+Str or list of disease(s). Default: None.

+

--sex
+Str or list of sex(es), e.g. 'female'. Default: None.

+

--dataset_id
+Str or list of CELLxGENE dataset ID(s). Default: None.

+

--tissue_general_ontology_term_id
+Str or list of high-level tissue UBERON ID(s). Default: None.
+Tissue labels and their corresponding UBERON IDs are listed here.

+

--tissue_general
+Str or list of high-level tissue label(s). Default: None.
+Tissue labels and their corresponding UBERON IDs are listed here.

+

--tissue_ontology_term_id
+Str or list of tissue ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--assay_ontology_term_id
+Str or list of assay ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--assay
+Str or list of assay(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--cell_type_ontology_term_id
+Str or list of cell type ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--development_stage_ontology_term_id
+Str or list of development stage ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--disease_ontology_term_id
+Str or list of disease ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--donor_id
+Str or list of donor ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--self_reported_ethnicity_ontology_term_id
+Str or list of self-reported ethnicity ontology ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--self_reported_ethnicity
+Str or list of self-reported ethnicity as defined in the CELLxGENE dataset schema. Default: None.

+

--sex_ontology_term_id
+Str or list of sex ontology ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--suspension_type
+Str or list of suspension type(s) as defined in the CELLxGENE dataset schema. Default: None.

+

Examples

+
gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad
+
+
# Python
+adata = gget.cellxgene(
+    gene = ["ACE2", "ABCA1", "SLC5A1"],
+    tissue = "lung",
+    cell_type = ["mucus secreting cell", "neuroendocrine cell"]
+)
+adata
+
+

→ Returns an AnnData object containing the scRNAseq ACE2, ABCA1, and SLC5A1 count matrix of 3322 human lung mucus secreting and neuroendocrine cells from CZ CELLxGENE Discover and their corresponding metadata.

+



+

Fetch metadata (corresponds to AnnData.obs) only:

+
gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv
+
+
# Python
+df = gget.cellxgene(
+    meta_only = True,
+    gene = "ENSMUSG00000015405",
+    ensembl = True,
+    tissue = "lung",  
+    species = "mus_musculus"
+)
+df
+
+

→ Returns only the metadata from ENSMUSG00000015405 (ACE2) expression datasets corresponding to mouse lung cells.

+

Also see: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html

+

References

+

If you use gget cellxgene in a publication, please cite the following articles:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/cite.html b/en/cite.html new file mode 100644 index 00000000..ebcff254 --- /dev/null +++ b/en/cite.html @@ -0,0 +1,389 @@ + + + + + + Citation Guidelines - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

license

+

Citation

+

If you use gget in a publication, please cite:
+Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

+
    +
  • +

    If using gget alphafold, please also cite:

    + +

    And, if applicable:

    + +
  • +
  • +

    If using gget archs4, please also cite:

    +
      +
    • +

      Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

      +
    • +
    • +

      Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

      +
    • +
    +
  • +
  • +

    If using gget bgee, please also cite:

    +
      +
    • Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793
    • +
    +
  • +
  • +

    If using gget blast, please also cite:

    +
      +
    • Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.
    • +
    +
  • +
  • +

    If using gget blat, please also cite:

    +
      +
    • Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.
    • +
    +
  • +
  • +

    If using gget cbio, please also cite:

    +
      +
    • +

      Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

      +
    • +
    • +

      Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

      +
    • +
    • +

      de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

      +
    • +
    • +

      Please also cite the source of the data if you are using a publicly available dataset.

      +
    • +
    +
  • +
  • +

    If using gget cellxgene, please also cite:

    + +
  • +
  • +

    If using gget cosmic, please also cite:

    +
      +
    • Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.
    • +
    +
  • +
  • +

    If using gget diamond, please also cite:

    + +
  • +
  • +

    If using gget elm, please also cite:

    +
      +
    • +

      Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

      +
    • +
    • +

      Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

      +
    • +
    +
  • +
  • +

    If using gget enrichr, please also cite:

    +
      +
    • +

      Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

      +
    • +
    • +

      Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

      +
    • +
    • +

      Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

      +
    • +
    +

    If working with non-human/mouse datasets, please also cite:

    +
      +
    • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
    • +
    +
  • +
  • +

    If using gget info, please also cite:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
  • +

    If using gget muscle, please also cite:

    + +
  • +
  • +

    If using gget opentargets, please also cite:

    +
      +
    • Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.
    • +
    +
  • +
  • +

    If using gget pdb, please also cite:

    +
      +
    • Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.
    • +
    +
  • +
  • +

    If using gget ref or gget search, please also cite:

    +
      +
    • Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.
    • +
    +
  • +
  • +

    If using gget seq, please also cite:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
+
+

Disclaimer

+

gget is only as accurate as the databases/servers/APIs it queries from. The accuracy or reliability of the data is not guaranteed or warranted in any way and the providers disclaim liability of any kind whatsoever, including, without limitation, liability for quality, performance, merchantability and fitness for a particular purpose arising out of the use, or inability to use the data.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/code_of_conduct.html b/en/code_of_conduct.html new file mode 100644 index 00000000..95af5315 --- /dev/null +++ b/en/code_of_conduct.html @@ -0,0 +1,323 @@ + + + + + + Code of Conduct - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Contributor Covenant Code of Conduct

+

Our Pledge

+

We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation.

+

We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community.

+

Our Standards

+

Examples of behavior that contributes to a positive environment for our +community include:

+
    +
  • Demonstrating empathy and kindness toward other people
  • +
  • Being respectful of differing opinions, viewpoints, and experiences
  • +
  • Giving and gracefully accepting constructive feedback
  • +
  • Accepting responsibility and apologizing to those affected by our mistakes, +and learning from the experience
  • +
  • Focusing on what is best not just for us as individuals, but for the +overall community
  • +
+

Examples of unacceptable behavior include:

+
    +
  • The use of sexualized language or imagery, and sexual attention or +advances of any kind
  • +
  • Trolling, insulting or derogatory comments, and personal or political attacks
  • +
  • Public or private harassment
  • +
  • Publishing others' private information, such as a physical or email +address, without their explicit permission
  • +
  • Other conduct which could reasonably be considered inappropriate in a +professional setting
  • +
+

Enforcement Responsibilities

+

Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful.

+

Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate.

+

Scope

+

This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event.

+

Enforcement

+

Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +lpachter@caltech.edu. +All complaints will be reviewed and investigated promptly and fairly.

+

All community leaders are obligated to respect the privacy and security of the +reporter of any incident.

+

Enforcement Guidelines

+

Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct:

+

1. Correction

+

Community Impact: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community.

+

Consequence: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested.

+

2. Warning

+

Community Impact: A violation through a single incident or series +of actions.

+

Consequence: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban.

+

3. Temporary Ban

+

Community Impact: A serious violation of community standards, including +sustained inappropriate behavior.

+

Consequence: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban.

+

4. Permanent Ban

+

Community Impact: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals.

+

Consequence: A permanent ban from any sort of public interaction within +the community.

+

Attribution

+

This Code of Conduct is adapted from the Contributor Covenant, +version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.

+

Community Impact Guidelines were inspired by Mozilla's code of conduct +enforcement ladder.

+

For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/contributing.html b/en/contributing.html new file mode 100644 index 00000000..39f07f77 --- /dev/null +++ b/en/contributing.html @@ -0,0 +1,303 @@ + + + + + + Contributing Guide - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Welcome to gget's contributing guide

+

Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the gget repo. ✨

+

Read our Code of Conduct to keep our community approachable and respectable.

+

In this guide you will get an overview of the contribution workflow from opening an issue or creating a pull request (PR) to reviewing and merging a PR.

+

Issues

+

Create a new issue

+

If you spot a problem with gget or you have an idea for a new feature, check if an issue already exists. If a related issue doesn't exist, you can open a new issue using the relevant issue form.

+

Solve an issue

+

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. If you find an issue to work on, you are welcome to open a PR with a fix.

+

Contribute through pull requests

+

Getting started

+
    +
  1. Fork the repository.
  2. +
+
    +
  • +

    Using GitHub Desktop:

    + +
  • +
  • +

    Using the command line:

    +
      +
    • Fork the repo so that you can make your changes without affecting the original project until you're ready to merge them.
    • +
    +
  • +
+
    +
  1. Create a working branch and start with your changes!
  2. +
+

Commit your update

+

Commit the changes once you are happy with them.

+

‼️ Self-review the following before creating a Pull Request ‼️

+
    +
  1. Review the content for technical accuracy.
  2. +
  3. Copy-edit the changes/comments for grammar, spelling, and adherence to the general style of existing gget code.
  4. +
  5. Format your code using black.
  6. +
  7. Make sure the unit tests pass: +
      +
    • Developer dependencies can be installed with pip install -r dev-requirements.txt
    • +
    • Run existing unit tests from the gget repository root with coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests*
    • +
    +
  8. +
  9. Add new unit tests if applicable: +
      +
    • Arguments and expected results are stored in json files in ./tests/fixtures/
    • +
    • Unit tests can be added to ./tests/test_*.py and will be automatically detected
    • +
    +
  10. +
  11. Make sure the edits are compatible with both the Python and the command line interface +
      +
    • The command line interface and arguments are defined in ./gget/main.py
    • +
    +
  12. +
  13. Add new modules/arguments to the documentation if applicable: +
      +
    • The manual for each module can be edited/added as ./docs/src/*.md
    • +
    +
  14. +
+

If you have any questions, feel free to start a discussion or create an issue as described above.

+

Pull Request

+

When you're finished with the changes, create a pull request, also known as a PR.

+

‼️ Please make all PRs against the dev branch of the gget repository.

+
    +
  • Don't forget to link PR to issue if you are solving one.
  • +
  • Enable the checkbox to allow maintainer edits so the branch can be updated for a merge.
  • +
  • If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.
  • +
+

Once you submit your PR, a gget team member will review your proposal. We may ask questions or request additional information.

+

Your PR is merged!

+

Congratulations! 🎉 The gget team thanks you. ✨

+

Once your PR is merged, your contributions will be publicly visible on the gget repo.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/cosmic.html b/en/cosmic.html new file mode 100644 index 00000000..713e9d56 --- /dev/null +++ b/en/cosmic.html @@ -0,0 +1,322 @@ + + + + + + gget cosmic - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cosmic 🪐

+

Search for genes, mutations, and other factors associated with cancer using the COSMIC (Catalogue Of Somatic Mutations In Cancer) database.
+Return format: JSON (command-line) or data frame/CSV (Python) when download_cosmic=False. When download_cosmic=True, downloads the requested database into the specified folder.

+

This module was written in part by @AubakirovArman (information querying) and @josephrich98 (database download).

+

NOTE: License fees apply for the commercial use of COSMIC. You can read more about licensing COSMIC data here.

+

Positional argument (for querying information)
+searchterm
+Search term, which can be a mutation, or gene name (or Ensembl ID), or sample, etc.
+Examples for the searchterm and entitity arguments:

+
+ + + + + + + + + + +
searchtermentitity
EGFRmutations-> Find mutations in the EGFR gene that are associated with cancer
v600emutations-> Find genes for which a v600e mutation is associated with cancer
COSV57014428mutations-> Find mutations associated with this COSMIC mutations ID
EGFRgenes-> Get the number of samples, coding/simple mutations, and fusions observed in COSMIC for EGFR
prostatecancer-> Get number of tested samples and mutations for prostate cancer
prostatetumour_site-> Get number of tested samples, genes, mutations, fusions, etc. with 'prostate' as primary tissue site
ICGCstudies-> Get project code and descriptions for all studies from the ICGC (International Cancer Genome Consortium)
EGFRpubmed-> Find PubMed publications on EGFR and cancer
ICGCsamples-> Get metadata on all samples from the ICGC (International Cancer Genome Consortium)
COSS2907494samples-> Get metadata on this COSMIC sample ID (cancer type, tissue, # analyzed genes, # mutations, etc.)
+
+

NOTE: (Python only) Set to None when downloading COSMIC databases with download_cosmic=True.

+

Optional arguments (for querying information)
+-e --entity
+'mutations' (default), 'genes', 'cancer', 'tumour site', 'studies', 'pubmed', or 'samples'.
+Defines the type of the results to return.

+

-l --limit
+Limits number of hits to return. Default: 100.

+

Flags (for downloading COSMIC databases)
+-d --download_cosmic
+Switches into database download mode.

+

-gm --gget_mutate
+TURNS OFF creation of a modified version of the database for use with gget mutate.
+Python: gget_mutate is True by default. Set gget_mutate=False to disable.

+

Optional arguments (for downloading COSMIC databases)
+-mc --mutation_class
+'cancer' (default), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', or 'cancer_example'
+Type of COSMIC database to download.

+

-cv --cosmic_version
+Version of the COSMIC database. Default: None -> Defaults to latest version.

+

-gv --grch_version
+Version of the human GRCh reference genome the COSMIC database was based on (37 or 38). Default: 37

+

--keep_genome_info +Whether to keep genome information in the modified database for use with gget mutate. Default: False

+

--remove_duplicates +Whether to remove duplicate rows from the modified database for use with gget mutate. Default: False

+

Optional arguments (general)
+-o --out
+Path to the file (or folder when downloading databases with the download_cosmic flag) the results will be saved in, e.g. 'path/to/results.json'.
+Default: None
+-> When download_cosmic=False: Results will be returned to standard out
+-> When download_cosmic=True: Database will be downloaded into current working directory

+

Flags (general)
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Query information

+
gget cosmic EGFR
+
+
# Python
+gget.cosmic("EGFR")
+
+

→ Returns mutations in the EGFR gene that are associated with cancer in the format:

+
+ + + +
GeneSyntaxAlternate IDsCanonical
EGFRc.*2446A>GEGFR c.*2446A>G, EGFR p.?, ...y
EGFRc.(2185_2283)ins(18)EGFR c.(2185_2283)ins(18), EGFR p.?, ...y
. . .. . .. . .. . .
+
+

Downloading COSMIC databases

+
gget cosmic --download_cosmic
+
+
# Python
+gget.cosmic(searchterm=None, download_cosmic=True)
+
+

→ Downloads the COSMIC cancer database of the latest COSMIC release into the current working directory.

+

References

+

If you use gget cosmic in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/diamond.html b/en/diamond.html new file mode 100644 index 00000000..faa8949b --- /dev/null +++ b/en/diamond.html @@ -0,0 +1,285 @@ + + + + + + gget diamond - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget diamond 💎

+

Align multiple protein or translated DNA sequences using DIAMOND (DIAMOND is similar to BLAST, but this is a local computation).
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+query
+Sequences (str or list) or path to FASTA file containing sequences to be aligned against the reference.

+

Required arguments
+-ref --reference
+Reference sequences (str or list) or path to FASTA file containing reference sequences.

+

Optional arguments
+-db --diamond_db
+Path to save DIAMOND database created from reference (str).
+Default: None -> Temporary db file will be deleted after alignment or saved in out if out is provided.

+

-s --sensitivity
+Sensitivity of alignment (str). Default: "very-sensitive".
+One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Number of threads used (int). Default: 1.

+

-db --diamond_binary
+Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget.

+

-o --out
+Path to the folder to save results in (str), e.g. "path/to/directory". Default: Standard out; temporary files are deleted.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
# !!! Make sure to list the positional argument first here so it is not added as a reference sequence
+gget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS
+
+
# Python
+gget.diamond(["GGETISAWESQME", "ELVISISALIVE", "LQVEFRANKLIN", "PACHTERLABRQCKS"], reference=["GGETISAWESQMEELVISISALIVELQVEFRANKLIN", "PACHTERLABRQCKS"])
+
+

→ Returns results in JSON (command-line) or data frame/CSV (Python) format:

+
+ + + +
query_accessionsubject_accessionidentity_percentagequery_seq_lengthsubject_seq_lengthlengthmismatchesgap_openingsquery_startquery_endsubject_startsubject_ende-valuebit_score
Seq0Seq0100133713001131132.82e-0930.8
Seq2Seq01001237120011226374.35e-0827.7
Seq3Seq1100151515001151152.01e-1136.2
+
+

More examples

+

References

+

If you use gget diamond in a publication, please cite the following articles:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/elm.html b/en/elm.html new file mode 100644 index 00000000..354c2748 --- /dev/null +++ b/en/elm.html @@ -0,0 +1,309 @@ + + + + + + gget elm - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget elm 🎭

+

Locally predict Eukaryotic Linear Motifs from an amino acid sequence or UniProt Acc using data from the ELM database.
+Return format: JSON (command-line) or data frame/CSV (Python). This module returns two data frames (or JSON formatted files) (see examples).

+

ELM data can be downloaded & distributed for non-commercial use according to the ELM Software License Agreement.

+

Before using gget elm for the first time, run gget setup elm (bash) / gget.setup("elm") (Python) once (also see gget setup).

+

Positional argument
+sequence
+Amino acid sequence or Uniprot Acc (str).
+When providing a Uniprot Acc, use flag --uniprot (Python: uniprot=True).

+

Optional arguments
+-s --sensitivity
+Sensitivity of DIAMOND alignment (str). Default: "very-sensitive".
+One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Number of threads used in DIAMOND alignment (int). Default: 1.

+

-bin --diamond_binary
+Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget.

+

-o --out
+Path to the folder to save results in (str), e.g. "path/to/directory". Default: Standard out; temporary files are deleted.

+

Flags
+-u --uniprot
+Set to True if sequence is a Uniprot Acc instead of an amino acid sequence.

+

-e --expand
+Expand the information returned in the regex data frame to include the protein names, organisms, and references that the motif was orignally validated on.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Find ELMs in an amino acid sequence:

+
gget setup elm          # Downloads/updates local ELM database
+gget elm -o gget_elm_results LIAQSIGQASFV
+
+
# Python
+gget.setup(“elm”)      # Downloads/updates local ELM database
+ortholog_df, regex_df = gget.elm("LIAQSIGQASFV")
+
+

Find ELMs giving a UniProt Acc as input:

+
gget setup elm          # Downloads/updates local ELM database
+gget elm -o gget_elm_results --uniprot Q02410 -e
+
+
# Python
+gget.setup(“elm”)      # Downloads/updates local ELM database
+ortholog_df, regex_df = gget.elm("Q02410", uniprot=True, expand=True)
+
+

→ Returns two data frames (or JSON formatted dictionaries for command line) containing extensive information about linear motifs associated with orthologous proteins and motifs found in the input sequence directly based on their regex expressions:

+

ortholog_df:

+
+ + +
Ortholog_UniProt_AccProteinNameclass_accessionELMIdentifierFunctionalSiteNameDescriptionOrganism
Q02410APBA1_HUMANELME000357LIG_CaMK_CASK_1CASK CaMK domain binding ligand motifMotif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2.Homo sapiens
Q02410APBA1_HUMANELME000091LIG_PDZ_Class_2PDZ domain ligandsThe C-terminal class 2 PDZ-binding motif is classically represented by a pattern such asHomo sapiens
+
+

regex_df:

+
+ + + + + + +
Instance_accessionELMIdentifierFunctionalSiteNameELMTypeDescriptionInstances (Matched Sequence)Organism
ELME000321CLV_C14_Caspase3-7Caspase cleavage motifCLVCaspase-3 and Caspase-7 cleavage site.ERSDGMus musculus
ELME000102CLV_NRD_NRD_1NRD cleavage siteCLVN-Arg dibasic convertase (NRD/Nardilysin) cleavage site.RRARattus norvegicus
ELME000100CLV_PCSK_PC1ET2_1PCSK cleavage siteCLVNEC1/NEC2 cleavage site.KRDMus musculus
ELME000146CLV_PCSK_SKI1_1PCSK cleavage siteCLVSubtilisin/kexin isozyme-1 (SKI1) cleavage site.RLLTAHomo sapiens
ELME000231DEG_APCC_DBOX_1APCC-binding Destruction motifsDEGAn RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent mannerSRVKLNIVRSaccharomyces cerevisiae S288c
+
+

Tutorials

+

🔗 General gget elm demo

+

🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif

+

🔗 Filter gget elm results based on disordered protein regions

+

References

+

If you use gget elm in a publication, please cite the following articles:

+
    +
  • +

    Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

    +
  • +
  • +

    Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/enrichr.html b/en/enrichr.html new file mode 100644 index 00000000..66f42161 --- /dev/null +++ b/en/enrichr.html @@ -0,0 +1,436 @@ + + + + + + gget enrichr - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget enrichr 💰

+

Perform an enrichment analysis on a list of genes using Enrichr or modEnrichr.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+genes
+Short names (gene symbols) of genes to perform enrichment analysis on, e.g. PHF14 RBM3 MSL1 PHF21A.
+Alternatively: use flag --ensembl to input a list of Ensembl gene IDs, e.g. ENSG00000106443 ENSG00000102317 ENSG00000188895.

+

Other required arguments
+-db --database
+Database database to use as reference for the enrichment analysis.
+Supports any database listed here under 'Gene-set Library' or one of the following shortcuts:
+'pathway'       (KEGG_2021_Human)
+'transcription'     (ChEA_2016)
+'ontology'      (GO_Biological_Process_2021)
+'diseases_drugs'   (GWAS_Catalog_2019)
+'celltypes'      (PanglaoDB_Augmented_2021)
+'kinase_interactions'  (KEA_2015)

+

NOTE: database shortcuts are not supported for species other than 'human' or 'mouse'. Click on the species databases listed below under species to view a list of databases available for each species.

+

Optional arguments
+-s --species
+Species to use as reference for the enrichment analysis. (Default: human) +Options:

+
+ + + + + + +
SpeciesDatabase list
humanEnrichr
mouseEquivalent to human
flyFlyEnrichr
yeastYeastEnrichr
wormWormEnrichr
fishFishEnrichr
+
+

-bkg_l --background_list
+Short names (gene symbols) of background genes to perform enrichment analysis on, e.g. NSUN3 POLRMT NLRX1.
+Alternatively: use flag --ensembl_background to input a list of Ensembl gene IDs.
+See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis.

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). (Default: Standard out.)
+Python: save=True will save the output in the current working directory.

+

-ko --kegg_out
+Path to the png file the marked KEGG pathway images will be saved in, e.g. path/to/directory/pathway.png. (Default: None)

+

-kr --kegg_rank
+Rank of the KEGG pathway to be plotted. (Default: 1)

+

figsize
+Python only. (width, height) of plot in inches. (Default: (10,10))

+

ax
+Python only. Pass a matplotlib axes object for plot customization. (Default: None)

+

Flags
+-e --ensembl
+Add this flag if genes are given as Ensembl gene IDs.

+

-e_b --ensembl_background
+Add this flag if background_list are given as Ensembl gene IDs.

+

-bkg --background
+If True, use set of > 20,000 default background genes listed here.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

plot
+Python only. plot=True provides a graphical overview of the first 15 results (default: False).

+

Examples

+
gget enrichr -db ontology ACE2 AGT AGTR1
+
+
# Python
+gget.enrichr(["ACE2", "AGT", "AGTR1"], database="ontology", plot=True)
+
+

→ Returns pathways/functions involving genes ACE2, AGT, and AGTR1 from the GO Biological Process 2021 database. In Python, plot=True returns a graphical overview of the results:

+

alt text

+



+

Use gget enrichr with a background gene list:
+See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis.

+
# Here, we are passing the input genes first (positional argument 'genes'), so they are not added to the background gene list behind the '-bkgr_l' argument
+gget enrichr \
+	PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \
+	-db ChEA_2022 \
+	-bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2
+
+
# Python
+gget.enrichr(
+	genes = [
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", "P2RX7",
+		"LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", "ANAPC16", "TMCC1",
+		"CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", "PLBD2", "LARP7", "TECPR2", 
+		"ZNF302", "CUX1", "MOB2", "CYTH2", "SEC22C", "EIF4E3", "ROBO2",
+		"ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", "ATP5F1"
+	], 
+	database = "ChEA_2022",
+	background_list = [
+		"NSUN3","POLRMT","NLRX1","SFXN5","ZC3H12C","SLC25A39","ARSG",
+		"DEFB29","PCMTD2","ACAA1A","LRRC1","2810432D09RIK","SEPHS2",
+		"SAC3D1","TMLHE","LOC623451","TSR2","PLEKHA7","GYS2","ARHGEF12",
+		"HIBCH","LYRM2","ZBTB44","ENTPD5","RAB11FIP2","LIPT1",
+		"INTU","ANXA13","KLF12","SAT2","GAL3ST2","VAMP8","FKBPL",
+		"AQP11","TRAP1","PMPCB","TM7SF3","RBM39","BRI3","KDR","ZFP748",
+		"NAP1L1","DHRS1","LRRC56","WDR20A","STXBP2","KLF1","UFC1",
+		"CCDC16","9230114K14RIK","RWDD3","2610528K11RIK","ACO1",
+		"CABLES1", "LOC100047214","YARS2","LYPLA1","KALRN","GYK",
+		"ZFP787","ZFP655","RABEPK","ZFP650","4732466D17RIK","EXOSC4",
+		"WDR42A","GPHN","2610528J11RIK","1110003E01RIK","MDH1","1200014M14RIK",
+		"AW209491","MUT","1700123L14RIK","2610036D13RIK",
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", 
+		"P2RX7", "LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", 
+		"ANAPC16", "TMCC1","CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", 
+		"PLBD2", "LARP7", "TECPR2", "ZNF302", "CUX1", "MOB2", "CYTH2", 
+		"SEC22C", "EIF4E3", "ROBO2", "ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", 
+		"ATP5F1""COX15","TMEM30A","NSMCE4A","TM2D2","RHBDD3","ATXN2","NFS1",
+		"3110001I20RIK","BC038156","C330002I19RIK","ZFYVE20","POLI","TOMM70A",
+		"LOC100047782","2410012H22RIK","RILP","A230062G08RIK",
+		"PTTG1IP","RAB1","AFAP1L1", "LYRM5","2310026E23RIK",
+		"SLC7A6OS","MAT2B","4932438A13RIK","LRRC8A","SMO","NUPL2"
+	],
+	plot=True
+)
+
+

→ Returns hits of the input gene list given the background gene list from the transcription factor/target library ChEA 2022. In Python, plot=True returns a graphical overview of the results:

+

alt text

+



+

Generate a KEGG pathway image with the genes from the enrichment analysis highlighted:
+This feature is available thanks to a PR by Noriaki Sato.

+
gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1
+
+
# Python
+gget.enrichr(["ZBP1", "IRF3", "RIPK1"], database="pathway", kegg_out="kegg.png", kegg_rank=1)
+
+

→ In addition to the standard gget enrichr output, the kegg_out argument saves an image with the genes from the enrichment analysis highlighted in the KEGG pathway:

+

kegg

+



+

The following example was submitted by Dylan Lawless via PR:
+Use gget enrichr in R and create a similar plot using ggplot.
+NOTE the switch of axes compared to the Python plot.

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+# Perform enrichment analysis on a list of genes
+df <- gget$enrichr(list("ACE2", "AGT", "AGTR1"), database = "ontology")
+
+# Count number of overlapping genes
+df$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric()
+
+# Only keep the top 15 results
+df <- df[1:15, ]
+
+# Plot
+library(ggplot2)
+
+df |>
+	ggplot() +
+	geom_bar(aes(
+		x = -log10(adj_p_val),
+		y = reorder(path_name, -adj_p_val)
+	),
+	stat = "identity",
+  	fill = "lightgrey",
+  	width = 0.5,
+	color = "black") +
+	geom_text(
+		aes(
+			y = path_name,
+			x = (-log10(adj_p_val)),
+			label = overlapping_genes_count
+		),
+		nudge_x = 0.75,
+		show.legend = NA,
+		color = "red"
+	) +
+  	geom_text(
+		aes(
+			y = Inf,
+			x = Inf,
+      			hjust = 1,
+      			vjust = 1,
+			label = "# of overlapping genes"
+		),
+		show.legend = NA,
+		color = "red"
+	) +
+	geom_vline(linetype = "dotted", linewidth = 1, xintercept = -log10(0.05)) +
+	ylab("Pathway name") +
+	xlab("-log10(adjusted P value)")
+
+

Tutorials

+

Using gget enrichr with background genes

+

References

+

If you use gget enrichr in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

    +
  • +
  • +

    Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

    +
  • +
  • +

    Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

    +
  • +
+

If working with non-human/mouse datasets, please also cite:

+
    +
  • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/gpt.html b/en/gpt.html new file mode 100644 index 00000000..653a659b --- /dev/null +++ b/en/gpt.html @@ -0,0 +1,277 @@ + + + + + + gget gpt - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget gpt 💬

+

Generates natural language text based on a given prompt using the OpenAI API's 'openai.ChatCompletion.create' endpoint. +This module, including its source code, documentation and unit tests, were partly written by OpenAI's Chat-GTP3.

+

NOTE:
+OpenAI API calls are only 'free' for the first three months after generating your OpenAI Account (OpenAI provides a $5 credit that expires).
+You can define a hard monthly billing limit (e.g. $1) here.
+See their pricing and FAQ here.
+Get your OpenAI API key here.

+

Returns: A string containing the generated text.

+

Before using gget gpt for the first time, run gget setup gpt / gget.setup("gpt") once (also see gget setup).

+

Positional argument
+prompt
+The input prompt to generate text from (str).

+

api_key
+Your OpenAI API key (str) (get your API key).

+

Optional arguments
+-m --model
+The name of the GPT model to use for generating the text (str). Default is "gpt-3.5-turbo".
+See https://platform.openai.com/docs/models/gpt-4 for more information on the available models.

+

-temp --temperature
+Value between 0 and 2 that controls the level of randomness and creativity in the generated text (float).
+Higher values result in more creative and varied text. Default is 1.

+

-tp --top_p
+Controls the diversity of the generated text as an alternative to sampling with temperature (float).
+Higher values result in more diverse and unexpected text. Default is 1.
+Note: OpenAI recommends altering this or temperature but not both.

+

-s --stop
+A sequence of tokens to mark the end of the generated text (str). Default is None.

+

-mt --max_tokens
+Controls the maximum length of the generated text, in tokens (int). Default is 200.

+

-pp --presence_penalty
+Number between -2.0 and 2.0. Higher values result increase the model's likelihood to talk about new topics (float). Default is 0.

+

-fp --frequency_penalty
+Number between -2.0 and 2.0. Higher values decrease the model's likelihood to repeat the same line verbatim (float). Default is 0.

+

-lb --logit_bias
+A dictionary that specifies a bias towards certain tokens in the generated text (dict). Default is None.

+

-o --out
+If provided, saves the generated text to a file with the specified path (str). Default: Standard out.

+

Example

+
gget gpt "How are you today GPT?" your_api_token
+
+
# Python
+print(gget.gpt("How are you today GPT?", "your_api_token"))
+
+
+Screen Shot 2023-03-18 at 3 42 32 PM + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/info.html b/en/info.html new file mode 100644 index 00000000..947a1328 --- /dev/null +++ b/en/info.html @@ -0,0 +1,288 @@ + + + + + + gget info - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget info 💡

+

Fetch extensive gene and transcript metadata from Ensembl, UniProt, and NCBI using Ensembl IDs.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+ens_ids
+One or more Ensembl IDs (WormBase and Flybase IDs are also supported).

+

Optional arguments
+-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-n --ncbi
+TURN OFF results from NCBI.
+Python: ncbi=False prevents data retrieval from NCBI (default: True).

+

-u --uniprot
+TURN OFF results from UniProt.
+Python: uniprot=False prevents data retrieval from UniProt (default: True).

+

-pdb --pdb
+INCLUDE PDB IDs in output (might increase runtime).
+Python: pdb=True includes PDB IDs in the results (default: False).

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget info ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.info(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Returns extensive information about each requested Ensembl ID:

+
+ + +
uniprot_idncbi_gene_idprimary_gene_namesynonymsprotein_namesensembl_descriptionuniprot_descriptionncbi_descriptionbiotypecanonical_transcript...
ENSG00000034713P6052011345GABARAPL2[ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2]Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)...GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ...Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein...protein_codingENST00000037243.7...
. . .. . .. . .. . .. . .. . .. . .. . .. . .. . .. . ....
+
+

More examples

+

References

+

If you use gget info in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
  • +

    Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

    +
  • +
  • +

    The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/installation.html b/en/installation.html new file mode 100644 index 00000000..36391ffe --- /dev/null +++ b/en/installation.html @@ -0,0 +1,239 @@ + + + + + + Installation - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image

+

Installation

+
pip install --upgrade gget
+
+

Alternative:

+
conda install -c bioconda gget
+
+

For use in Jupyter Lab / Google Colab:

+
import gget
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/introduction.html b/en/introduction.html new file mode 100644 index 00000000..5525bfa4 --- /dev/null +++ b/en/introduction.html @@ -0,0 +1,284 @@ + + + + + + Introduction - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image +Downloads +Conda +license +status +status +Star on GitHub

+

+

Welcome!

+

gget is a free, open-source command-line tool and Python package that enables efficient querying of genomic databases.
+
+gget consists of a collection of separate but interoperable modules, each designed to facilitate one type of database querying in a single line of code.
+
+NOTE: The databases queried by gget are continuously being updated which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary. If you encounter a problem, please upgrade to the latest gget version using pip install --upgrade gget. If the problem persists, please report the issue.
+
+
 Request a new feature 
+
+

+
+

gget info and gget seq are currently unable to fetch information for WormBase and FlyBase IDs (all other IDs are functioning normally). This issue arose due to a bug in Ensembl release 112. We appreciate Ensembl's efforts in addressing this issue and expect a fix soon. Thank you for your patience.

+
+

gget modules

+

These are the gget core modules. Click on any module to access detailed documentation.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gget alphafold
Predict 3D protein structure from an amino acid sequence.
gget archs4
What is the expression of my gene in tissue X?
gget bgee
Find all orthologs of a gene.
gget blast
BLAST a nucleotide or amino acid sequence.
gget blat
Find the genomic location of a nucleotide or amino acid sequence.
gget cbio
Explore a gene's expression in the specified cancers.
gget cellxgene
Get ready-to-use single-cell RNA seq count matrices from certain tissues/ diseases/ etc.
gget cosmic
Search for genes, mutations, and other factors associated with certain cancers.
gget diamond
Align amino acid sequences to a reference.
gget elm
Find protein interaction domains and functions in an amino acid sequence.
gget enrichr
Check if a list of genes is associated with a specific celltype/ pathway/ disease/ etc.
gget info
Fetch all of the information associated with an Ensembl ID.
gget muscle
Align multiple nucleotide or amino acid sequences to each other.
gget mutate
Mutate nucleotide sequences based on specified mutations.
gget opentargets
Explore which diseases and drugs a gene is associated with.
gget pdb
Fetch data from the Protein Data Bank (PDB) based on a PDB ID.
gget ref
Get reference genomes from Ensembl.
gget search
Find Ensembl IDs associated with the specified search word.
gget seq
Fetch the nucleotide or amino acid sequence of a gene.
+
+

If you use gget in a publication, please cite*:

+
Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836
+
+

Read the article here: https://doi.org/10.1093/bioinformatics/btac836

+
+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/muscle.html b/en/muscle.html new file mode 100644 index 00000000..b4f781db --- /dev/null +++ b/en/muscle.html @@ -0,0 +1,283 @@ + + + + + + gget muscle - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget muscle 🦾

+

Align multiple nucleotide or amino acid sequences to each other using Muscle5.
+Return format: ClustalW formatted standard out or aligned FASTA (.afa).

+

Positional argument
+fasta
+List of sequences or path to FASTA or .txt file containing the nucleotide or amino acid sequences to be aligned.

+

Optional arguments
+-o --out
+Path to the aligned FASTA file the results will be saved in, e.g. path/to/directory/results.afa. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-s5 --super5
+Aligns input using the Super5 algorithm instead of the Parallel Perturbed Probcons (PPP) algorithm to decrease time and memory.
+Use for large inputs (a few hundred sequences).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+
# Python
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+
+
gget muscle fasta.fa
+
+
# Python
+gget.muscle("fasta.fa")
+
+

→ Returns an overview of the aligned sequences with ClustalW coloring. (To return an aligned FASTA (.afa) file, use --out argument (or save=True in Jupyter Lab/Google Colab).) In the above example, the 'fasta.fa' includes several sequences to be aligned (e.g. isoforms returned from gget seq).

+

alt text

+

You can also view aligned fasta files returned by gget.muscle using programs like alv, as shown below:

+
# Python
+!pip install biopython
+!pip install alv
+from Bio import AlignIO
+import alv
+
+gget.muscle("fasta.fa", out="fasta_aligned.afa")
+msa = AlignIO.read("fasta_aligned.afa", "fasta")
+alv.view(msa)
+
+

More examples

+

References

+

If you use gget muscle in a publication, please cite the following articles:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/mutate.html b/en/mutate.html new file mode 100644 index 00000000..e14a2505 --- /dev/null +++ b/en/mutate.html @@ -0,0 +1,407 @@ + + + + + + gget mutate - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget mutate 🧟

+

Takes in nucleotide sequences and mutations (in standard mutation annotation and returns mutated versions of the input sequences according to the provided mutations.
+Return format: Saves mutated sequences in FASTA format (or returns a list containing the mutated sequences if out=None).

+

This module was written by Joseph Rich.

+

Positional argument
+sequences
+Path to the FASTA file containing the sequences to be mutated, e.g., 'path/to/seqs.fa'.
+Sequence identifiers following the '>' character must correspond to the identifiers in the seq_ID column of mutations.

+

Example format of the FASTA file:

+
>seq1 (or ENSG00000106443)  
+ACTGCGATAGACT  
+>seq2  
+AGATCGCTAG
+
+

Alternatively: Input sequence(s) as a string or list, e.g. 'AGCTAGCT'.

+

NOTE: Only the letters until the first space or dot will be used as sequence identifiers - Version numbers of Ensembl IDs will be ignored.
+NOTE: When the sequences input is a genome fasta file, also see the gtf argument below.

+

Required arguments
+-m --mutations
+Path to the csv or tsv file (e.g., 'path/to/mutations.csv') or data frame (DataFrame object) containing information about the mutations in the following format (the 'notes' and 'mut_ID' columns are optional):

+
+ + + + + +
mutationmut_IDseq_IDnotes
c.2C>Tmut1seq1-> Apply mutation 1 to sequence 1
c.9_13invmut2seq2-> Apply mutation 2 to sequence 2
c.9_13invmut2seq4-> Apply mutation 2 to sequence 4
c.9_13delinsAATmut3seq4-> Apply mutation 3 to sequence 4
.........
+
+

'mutation' = Column containing the mutations to be performed written in standard mutation annotation
+'mut_ID' = Column containing the identifier for each mutation
+'seq_ID' = Column containing the identifiers of the sequences to be mutated (must correspond to the string following the '>' character in the 'sequences' FASTA file; do NOT include spaces or dots)

+

Alternatively: Input mutation(s) as a string or list, e.g., 'c.2C>T'.
+If a list is provided, the number of mutations must equal the number of input sequences.

+

For use from the terminal (bash): Enclose individual mutation annotations in quotation marks to prevent parsing errors.

+

Optional input-related arguments
+-mc --mut_column
+Name of the column containing the mutations to be performed in mutations. Default: 'mutation'.

+

-sic --seq_id_column
+Name of the column containing the IDs of the sequences to be mutated in mutations. Default: 'seq_ID'.

+

-mic --mut_id_column
+Name of the column containing the IDs of each mutation in mutations. Default: Same as mut_column.

+

-gtf --gtf
+Path to a .gtf file. When providing a genome fasta file as input for 'sequences', you can provide a .gtf file here and the input sequences will be defined according to the transcript boundaries, e.g. 'path/to/genome_annotation.gtf'. Default: None

+

-gtic --gtf_transcript_id_column
+Column name in the input mutations file containing the transcript ID. In this case, column seq_id_column should contain the chromosome number.
+Required when gtf is provided. Default: None

+

Optional mutant sequence generation/filtering arguments
+-k --k
+Length of sequences flanking the mutation. Default: 30.
+If k > total length of the sequence, the entire sequence will be kept.

+

-msl --min_seq_len
+Minimum length of the mutant output sequence, e.g. 100. Mutant sequences smaller than this will be dropped. Default: None

+

-ma --max_ambiguous
+Maximum number of 'N' (or 'n') characters allowed in the output sequence, e.g. 10. Default: None (no ambiguous character filter will be applied)

+

Optional mutant sequence generation/filtering flags
+-ofr --optimize_flanking_regions
+Removes nucleotides from either end of the mutant sequence to ensure (when possible) that the mutant sequence does not contain any k-mers also found in the wildtype/input sequence.

+

-rswk --remove_seqs_with_wt_kmers
+Removes output sequences where at least one k-mer is also present in the wildtype/input sequence in the same region.
+When used with --optimize_flanking_regions, only sequences for which a wildtype k-mer is still present after optimization will be removed.

+

-mio --merge_identical_off
+Do not merge identical mutant sequences in the output (by default, identical sequences will be merged by concatenating the sequence headers for all identical sequences).

+

Optional arguments to generate additional output
+This output is activated using the --update_df flag and will be stored in a copy of the mutations DataFrame.

+

-udf_o --update_df_out
+Path to output csv file containing the updated DataFrame, e.g. 'path/to/mutations_updated.csv'. Only valid when used with --update_df.
+Default: None -> the new csv file will be saved in the same directory as the mutations DataFrame with appendix '_updated'

+

-ts --translate_start
+(int or str) The position in the input nucleotide sequence to start translating, e.g. 5. If a string is provided, it should correspond to a column name in mutations containing the open reading frame start positions for each sequence/mutation. Only valid when used with --translate.
+Default: translates from the beginning of each sequence

+

-te --translate_end
+(int or str) The position in the input nucleotide sequence to end translating, e.g. 35. If a string is provided, it should correspond to a column name in mutations containing the open reading frame end positions for each sequence/mutation. Only valid when used with --translate.
+Default: translates until the end of each sequence

+

Optional flags to modify additional output
+-udf --update_df
+Updates the input mutations DataFrame to include additional columns with the mutation type, wildtype nucleotide sequence, and mutant nucleotide sequence (only valid if mutations is a .csv or .tsv file).

+

-sfs --store_full_sequences
+Includes the complete wildtype and mutant sequences in the updated mutations DataFrame (not just the sub-sequence with k-length flanks). Only valid when used with --update_df.

+

-tr --translate
+Adds additional columns to the updated mutations DataFrame containing the wildtype and mutant amino acid sequences. Only valid when used with --store_full_sequences.

+

Optional general arguments
+-o --out
+Path to output FASTA file containing the mutated sequences, e.g., 'path/to/output_fasta.fa'.
+Default: None -> returns a list of the mutated sequences to standard out.
+The identifiers (following the '>') of the mutated sequences in the output FASTA will be '>[seq_ID]_[mut_ID]'.

+

Optional general flags
+-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget mutate ATCGCTAAGCT -m 'c.4G>T'
+
+
# Python
+gget.mutate("ATCGCTAAGCT", "c.4G>T")
+
+

→ Returns ATCTCTAAGCT.

+



+

List of sequences with a mutation for each sequence provided in a list:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], ["c.4G>T", "c.1_3inv"], out="mut_fasta.fa")
+
+

→ Saves 'mut_fasta.fa' file containing:

+
>seq1_mut1  
+ATCTCTAAGCT  
+>seq2_mut2  
+GATCTA
+
+



+

One mutation applied to several sequences with adjusted k:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], "c.1_3inv", k=3)
+
+

→ Returns ['CTAGCT', 'GATCTA'].

+



+

Add mutations to an entire genome with extended output
+Main input:

+
    +
  • mutation information as a mutations CSV (by having seq_id_column contain chromosome information, and mut_column contain mutation information with respect to genome coordinates)
  • +
  • the genome as the sequences file
  • +
+

Since we are passing the path to a gtf file to the gtf argument, transcript boundaries will be respected (the genome will be split into transcripts). gtf_transcript_id_column specifies the name of the column in mutations containing the transcript IDs corresponding to the transcript IDs in the gtf file.

+

The optimize_flanking_regions argument maximizes the length of the resulting mutation-containing sequences while maintaining specificity (no wildtype k-mer will be retained).

+

update_df activates the creation of a new CSV file with updated information about each input and output sequence. This new CSV file will be saved as update_df_out. Since store_full_sequences is activated, this new CSV file will not only contain the output sequences (restricted in size by flanking regiong of size k), but also the complete input and output sequences. This allows us to observe the mutation in the context of the entire sequence. Lastly, we are also adding the translated versions of the complete sequences by adding the with the translate flag, so we can observe how the resulting amino acid sequence is changed. The translate_start and translate_end arguments specify the names of the columns in mutations that contain the start and end positions of the open reading frame (start and end positions for translating the nucleotide sequence to an amino acid sequence), respectively.

+
gget mutate \
+  -m mutations_input.csv \
+  -o mut_fasta.fa \
+  -k 4 \
+  -sic Chromosome \
+  -mic Mutation \
+  -gtf genome_annotation.gtf \
+  -gtic Ensembl_Transcript_ID \
+  -ofr \
+  -update_df \
+  -udf_o mutations_updated.csv \
+  -sfs \
+  -tr \
+  -ts Translate_Start \
+  -te Translate_End \
+  genome_reference.fa
+
+
# Python
+gget.mutate(sequences="genome_reference.fa", mutations="mutations_input.csv", out="mut_fasta.fa", k=4, seq_id_column="Chromosome", mut_column="Mutation", gtf="genome_annotation.gtf", gtf_transcript_id_column="Ensembl_Transcript_ID", optimize_flanking_regions=True, update_df=True, update_df_out="mutations_updated.csv", store_full_sequences=True, translate=True, translate_start="Translate_Start", translate_end="Translate_End")
+
+

→ Takes as input 'mutations_input.csv' file containing:

+
| Chromosome | Mutation          | Ensembl_Transcript_ID  | Translate_Start | Translate_End |
+|------------|-------------------|------------------------|-----------------|---------------|
+| 1          | g.224411A>C       | ENST00000193812        | 0               | 100           |
+| 8          | g.25111del        | ENST00000174411        | 0               | 294           |
+| X          | g.1011_1012insAA  | ENST00000421914        | 9               | 1211          |
+
+

→ Saves 'mut_fasta.fa' file containing:

+
>1:g.224411A>C  
+TGCTCTGCT  
+>8:g.25111del  
+GAGTCGAT
+>X:g.1011_1012insAA
+TTAGAACTT
+
+

→ Saves 'mutations_updated.csv' file containing:

+

+| Chromosome | Mutation          | Ensembl_Transcript_ID  | mutation_type | wt_sequence | mutant_sequence | wt_sequence_full  | mutant_sequence_full | wt_sequence_aa_full | mutant_sequence_aa_full |
+|------------|-------------------|------------------------|---------------|-------------|-----------------|-------------------|----------------------|---------------------|-------------------------|
+| 1          | g.224411A>C       | ENSMUST00000193812     | Substitution  | TGCTATGCT   | TGCTCTGCT       | ...TGCTATGCT...   | ...TGCTCTGCT...      | ...CYA...           | ...CSA...               |
+| 8          | g.25111del        | ENST00000174411        | Deletion      | GAGTCCGAT   | GAGTCGAT        | ...GAGTCCGAT...   | ...GAGTCGAT...       | ...ESD...           | ...ES...                |
+| X          | g.1011_1012insAA  | ENST00000421914        | Insertion     | TTAGCTT     | TTAGAACTT       | ...TTAGCTT...     | ...TTAGAACTT...      | ...A...             | ...EL...                |
+
+
+

References

+

If you use gget mutate in a publication, please cite the following articles:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/opentargets.html b/en/opentargets.html new file mode 100644 index 00000000..1cd90e0c --- /dev/null +++ b/en/opentargets.html @@ -0,0 +1,441 @@ + + + + + + gget opentargets - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget opentargets 🎯

+

Fetch associated diseases or drugs from OpenTargets using Ensembl IDs.
+Return format: JSON/CSV (command-line) or data frame (Python).

+

This module was written by Sam Wagenaar.

+

Positional argument
+ens_id
+Ensembl gene ID, e.g ENSG00000169194.

+

Optional arguments
+-r --resource
+Defines the type of information to return in the output. Default: 'diseases'.
+Possible resources are:

+
+ + + + + + + +
ResourceReturn ValueValid FiltersSources
diseasesAssociated diseasesNoneVarious:etc.
drugsAssociated drugsdisease_idChEMBL
tractabilityTractability dataNoneOpen Targets
pharmacogeneticsPharmacogenetic responsesdrug_idPharmGKB
expressionGene expression data (by tissues, organs, and anatomical systems)tissue_id
anatomical_system
organ
depmapDepMap gene→disease-effect data.tissue_idDepMap Portal
interactionsProtein⇄protein interactionsprotein_a_id
protein_b_id
gene_b_id
+
+

-l --limit
+Limit the number of results, e.g 10. Default: No limit.
+Note: Not compatible with the tractability and depmap resources.

+

-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Optional filter arguments

+

-fd --filter_disease disease_id
+Filter by disease ID, e.g. 'EFO_0000274'. Only valid for the drugs resource.

+

-fc --filter_drug drug_id
+Filter by drug ID, e.g. 'CHEMBL1743081'. Only valid for the pharmacogenetics resource.

+

-ft --filter_tissue tissue_id
+Filter by tissue ID, e.g. 'UBERON_0000473'. Only valid for the expression and depmap resources.

+

-fa --filter_anat_sys
+Filter by anatomical system, e.g. 'nervous system'. Only valid for the expression resource.

+

-fo --filter_organ anatomical_system
+Filter by organ, e.g. 'brain'. Only valid for the expression resource.

+

-fpa --filter_protein_a protein_a_id
+Filter by the protein ID of the first protein in the interaction, e.g. 'ENSP00000304915'. Only valid for the interactions resource.

+

-fpb --filter_protein_b protein_b_id
+Filter by the protein ID of the second protein in the interaction, e.g. 'ENSP00000379111'. Only valid for the interactions resource.

+

-fgb --filter_gene_b gene_b_id
+Filter by the gene ID of the second protein in the interaction, e.g. 'ENSG00000077238'. Only valid for the interactions resource.

+

filters
+Python only. A dictionary of filters, e.g.

+
{'disease_id': ['EFO_0000274', 'HP_0000964']}
+
+

filter_mode
+Python only. filter_mode='or' combines filters of different IDs with OR logic. +filter_mode='and' combines filters of different IDs with AND logic (default).

+

Flags
+-csv --csv
+Command-line only. Returns the output in CSV format, instead of JSON format. +Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

-or --or
+Command-line only. Filters are combined with OR logic. Default: AND logic.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Examples

+

Get associated diseases for a specific gene:

+
gget opentargets ENSG00000169194 -r diseases -l 1
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='diseases', limit=1)
+
+

→ Returns the top disease associated with the gene ENSG00000169194.

+
+ +
idnamedescriptionscore
EFO_0000274atopic eczemaA chronic inflammatory genetically determined disease of the skin ...0.66364347241831
+
+



+

Get associated drugs for a specific gene:

+
gget opentargets ENSG00000169194 -r drugs -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='drugs', limit=2)
+
+

→ Returns the top 2 drugs associated with the gene ENSG00000169194.

+
+ + +
idnametypeaction_mechanismdescriptionsynonymstrade_namesdisease_iddisease_nametrial_phasetrial_statustrial_idsapproved
CHEMBL1743081TRALOKINUMABAntibodyInterleukin‑13 inhibitorAntibody drug with a maximum clinical trial phase of IV ...['CAT-354', 'Tralokinumab']['Adbry', 'Adtralza']EFO_0000274atopic eczema4[]True
CHEMBL4297864CENDAKIMABAntibodyInterleukin‑13 inhibitorAntibody drug with a maximum clinical trial phase of III ...[ABT-308, Abt-308, CC-93538, Cendakimab, RPC-4046][]EFO_0004232eosinophilic esophagitis3Recruiting[NCT04991935]False
+
+

Note: Returned trial_ids are ClinicalTrials.gov identifiers

+



+

Get tractability data for a specific gene:

+
gget opentargets ENSG00000169194 -r tractability
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='tractability')
+
+

→ Returns tractability data for the gene ENSG00000169194.

+
+ + + + + +
labelmodality
High-Quality PocketSmall molecule
Approved DrugAntibody
GO CC high confAntibody
UniProt loc med confAntibody
UniProt SigP or TMHMMAntibody
+
+



+

Get pharmacogenetic responses for a specific gene:

+
gget opentargets ENSG00000169194 -r pharmacogenetics -l 1
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='pharmacogenetics', limit=1)
+
+

→ Returns pharmacogenetic responses for the gene ENSG00000169194.

+
+ +
rs_idgenotype_idgenotypevariant_consequence_idvariant_consequence_labeldrugsphenotypegenotype_annotationresponse_categorydirect_targetevidence_levelsourceliterature
rs12956865_132660151_T_T,TTTSO:0002073no_sequence_alteration    id        name
0  None  hepatitis vaccines
increased risk for non‑immune response to the hepatitis B vaccinePatients with the TT genotype may be at increased risk for non-immune response to the hepatitis B vaccine...efficacyFalse3pharmgkb[21111021]
+
+

Note: Returned literature ids are Europe PMC identifiers

+



+

Get tissues where a gene is most expressed:

+
gget opentargets ENSG00000169194 -r expression -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='expression', limit=2)
+
+

→ Returns the top 2 tissues where the gene ENSG00000169194 is most expressed.

+
+ + +
tissue_idtissue_namerna_zscorerna_valuerna_unitrna_levelanatomical_systemsorgans
UBERON_0000473testis510263[reproductive system][reproductive organ, reproductive structure]
CL_0000542EBV‑transformed lymphocyte1542[hemolymphoid system, immune system, lymphoid system][immune organ]
+
+



+

Get DepMap gene-disease effect data for a specific gene:

+
gget opentargets ENSG00000169194 -r depmap
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='depmap')
+
+

→ Returns DepMap gene-disease effect data for the gene ENSG00000169194.

+
+ +
depmap_idexpressioneffecttissue_idtissue_namecell_line_namedisease_cell_line_iddisease_namemutation
ACH‑0015320.1763230.054950UBERON_0002113kidneyJMU-RTK-2NoneRhabdoid CancerNone
+
+



+

Get protein-protein interactions for a specific gene:

+
gget opentargets ENSG00000169194 -r interactions -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='interactions', limit=2)
+
+

→ Returns the top 2 protein-protein interactions for the gene ENSG00000169194.

+
+ + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000379111ENSG00000077238IL4Runspecified role9606
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000360730ENSG00000131724IL13RA1unspecified role9606
+
+



+

Get protein-protein interactions for a specific gene, filtering by protein and gene IDs:

+
gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': 'ENSG00000077238'})
+
+

→ Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 and the second gene is ENSG00000077238.

+
+ + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
None3reactomeP35225ENSG00000169194IL13unspecified role9606P24394ENSG00000077238IL4Runspecified role9606
None2signorP35225ENSG00000169194IL13regulator9606P24394ENSG00000077238IL4Rregulator target9606
+
+



+

Get protein-protein interactions for a specific gene, filtering by protein or gene IDs:

+
gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 ENSG00000111537 --or -l 5
+
+
# Python
+import gget
+gget.opentargets(
+    'ENSG00000169194',
+    resource='interactions',
+    filters={'protein_a_id': 'P35225', 'gene_b_id': ['ENSG00000077238', 'ENSG00000111537']},
+    filter_mode='or',
+    limit=5
+)
+
+

→ Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 or the second gene is either ENSG00000077238 or ENSG00000111537.

+
+ + + + + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000379111ENSG00000077238IL4Runspecified role9606
0.9612stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000229135ENSG00000111537IFNGunspecified role9606
0.8009intactP35225ENSG00000169194IL13unspecified role9606Q14627ENSG00000123496IL13RA2unspecified role9606
0.7406intactP35225ENSG00000169194IL13unspecified role9606P78552ENSG00000131724IL13RA1unspecified role9606
0.4001intactP35225ENSG00000169194IL13unspecified role9606Q86XT9ENSG00000149932TMEM219stimulator9606
+
+

More examples

+

References

+

If you use gget opentargets in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/pdb.html b/en/pdb.html new file mode 100644 index 00000000..35fb5635 --- /dev/null +++ b/en/pdb.html @@ -0,0 +1,308 @@ + + + + + + gget pdb - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget pdb 🔮

+

Query RCSB Protein Data Bank (PDB) for the protein structure/metadata of a given PDB ID.
+Return format: Resource 'pdb' is returned in PDB format. All other resources are returned in JSON format.

+

Positional argument
+pdb_id
+PDB ID to be queried, e.g. '7S7U'.

+

Optional arguments
+-r --resource
+Defines type of information to be returned. One of the following:
+'pdb': Returns the protein structure in PDB format (default).
+'entry': Information about PDB structures at the top level of PDB structure hierarchical data organization.
+'pubmed': Get PubMed annotations (data integrated from PubMed) for a given entry's primary citation.
+'assembly': Information about PDB structures at the quaternary structure level.
+'branched_entity': Get branched entity description (define entity ID as 'identifier').
+'nonpolymer_entity': Get non-polymer entity data (define entity ID as 'identifier').
+'polymer_entity': Get polymer entity data (define entity ID as 'identifier').
+'uniprot': Get UniProt annotations for a given macromolecular entity (define entity ID as 'identifier').
+'branched_entity_instance': Get branched entity instance description (define chain ID as 'identifier').
+'polymer_entity_instance': Get polymer entity instance (a.k.a chain) data (define chain ID as 'identifier').
+'nonpolymer_entity_instance': Get non-polymer entity instance description (define chain ID as 'identifier').

+

-i --identifier
+Can be used to define assembly, entity or chain ID (default: None). Assembly/entity IDs are numbers (e.g. 1), and chain IDs are letters (e.g. 'A').

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/7S7U.pdb or path/to/directory/7S7U_entry.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Examples

+
gget pdb 7S7U -o 7S7U.pdb
+
+
# Python
+gget.pdb("7S7U", save=True)
+
+

→ Saves the structure of 7S7U in PDB format as '7S7U.pdb' in the current working directory.

+

Find PDB crystal structures for a comparative analysis of protein structure:

+
# Find PDB IDs associated with an Ensembl ID 
+gget info ENSG00000130234
+
+# Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, 
+# you will likely find more PDB entries by BLASTing the sequence agains the PDB.
+
+# Get the amino acid sequence of a transcript from an Ensembl ID
+gget seq --translate ENSG00000130234 -o gget_seq_results.fa
+
+# BLAST an amino acid sequence to find similar structures in the PDB
+gget blast --database pdbaa gget_seq_results.fa
+
+# Get PDB files from the PDB IDs returned by gget blast for comparative analysis
+gget pdb 7DQA -o 7DQA.pdb
+gget pdb 7CT5 -o 7CT5.pdb
+
+
# Find PDB IDs associated with an Ensembl ID 
+gget.info("ENSG00000130234")
+
+# Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, 
+# you will likely find more PDB entries by BLASTing the sequence agains the PDB.
+
+# Get the amino acid sequence of a transcript from an Ensembl ID
+gget.seq("ENSG00000130234", translate=True, save=True)
+
+# BLAST an amino acid sequence to find similar structures in the PDB
+gget.blast("gget_seq_results.fa", database="pdbaa")
+
+# Get PDB files from the PDB IDs returned by gget blast for comparative analysis
+gget.pdb("7DQA", save=True)
+gget.pdb("7CT5", save=True)
+
+

→ The use case above exemplifies how to find PDB files for comparative analysis of protein structure starting with Ensembl IDs or amino acid sequences. The fetched PDB files can also be compared to predicted structures generated by gget alphafold. PDB files can be viewed interactively in 3D online, or using programs like PyMOL or Blender. To compare two PDB files, you can use this website.

+

More examples

+

References

+

If you use gget pdb in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/quick_start_guide.html b/en/quick_start_guide.html new file mode 100644 index 00000000..f45a3643 --- /dev/null +++ b/en/quick_start_guide.html @@ -0,0 +1,317 @@ + + + + + + Quick Start Guide - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

🪄 Quick start guide

+

Command line:

+
# Fetch all Homo sapiens reference and annotation FTPs from the latest Ensembl release
+$ gget ref homo_sapiens
+
+# Get Ensembl IDs of human genes with "ace2" or "angiotensin converting enzyme 2" in their name/description
+$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2'
+
+# Look up gene ENSG00000130234 (ACE2) and its transcript ENST00000252519
+$ gget info ENSG00000130234 ENST00000252519
+
+# Fetch the amino acid sequence of the canonical transcript of gene ENSG00000130234
+$ gget seq --translate ENSG00000130234
+
+# Quickly find the genomic location of (the start of) that amino acid sequence
+$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# BLAST (the start of) that amino acid sequence
+$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Align multiple nucleotide or amino acid sequences against each other (also accepts path to FASTA file)  
+$ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Align one or more amino acid sequences against a reference (containing one or more sequences) (local BLAST) (also accepts paths to FASTA files)  
+$ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS  
+
+# Use Enrichr for an ontology analysis of a list of genes
+$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P
+
+# Get the human tissue expression of gene ACE2
+$ gget archs4 -w tissue ACE2
+
+# Get the protein structure (in PDB format) of ACE2 as stored in the Protein Data Bank (PDB ID returned by gget info)
+$ gget pdb 1R42 -o 1R42.pdb
+
+# Find Eukaryotic Linear Motifs (ELMs) in a protein sequence
+$ gget setup elm # setup only needs to be run once
+$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Fetch a scRNAseq count matrix (AnnData format) based on specified gene(s), tissue(s), and cell type(s) (default species: human)
+$ gget setup cellxgene # setup only needs to be run once
+$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad
+
+# Predict the protein structure of GFP from its amino acid sequence
+$ gget setup alphafold # setup only needs to be run once
+$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK
+
+

Python (Jupyter Lab / Google Colab):

+
import gget
+gget.ref("homo_sapiens")
+gget.search(["ace2", "angiotensin converting enzyme 2"], "homo_sapiens")
+gget.info(["ENSG00000130234", "ENST00000252519"])
+gget.seq("ENSG00000130234", translate=True)
+gget.blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+gget.diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget.enrichr(["ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"], database="ontology", plot=True)
+gget.archs4("ACE2", which="tissue")
+gget.pdb("1R42", save=True)
+
+gget.setup("elm") # setup only needs to be run once
+ortho_df, regex_df = gget.elm("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+
+gget.setup("cellxgene") # setup only needs to be run once
+gget.cellxgene(gene = ["ACE2", "SLC5A1"], tissue = "lung", cell_type = "mucus secreting cell")
+
+gget.setup("alphafold") # setup only needs to be run once
+gget.alphafold("MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK")
+
+

Call gget from R using reticulate:

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+gget$ref("homo_sapiens")
+gget$search(list("ace2", "angiotensin converting enzyme 2"), "homo_sapiens")
+gget$info(list("ENSG00000130234", "ENST00000252519"))
+gget$seq("ENSG00000130234", translate=TRUE)
+gget$blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$muscle(list("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"), out="out.afa")
+gget$diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget$enrichr(list("ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"), database="ontology")
+gget$archs4("ACE2", which="tissue")
+gget$pdb("1R42", save=TRUE)
+
+

More examples

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/ref.html b/en/ref.html new file mode 100644 index 00000000..b2405563 --- /dev/null +++ b/en/ref.html @@ -0,0 +1,321 @@ + + + + + + gget ref - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget ref 📖

+

Fetch FTPs and their respective metadata (or use flag ftp to only return the links) for reference genomes and annotations from Ensembl by species.
+Return format: dictionary/JSON.

+

Positional argument
+species
+Species for which the FTPs will be fetched in the format genus_species, e.g. homo_sapiens.
+Supports all available vertebrate and invertebrate (plants, fungi, protists, and invertebrate metazoa) genomes from Ensembl, except bacteria.
+Note: Not required when using flags --list_species or --list_iv_species.
+Supported shortcuts: 'human', 'mouse', 'human_grch37' (accesses the GRCh37 genome assembly)

+

Optional arguments
+-w --which
+Defines which results to return. Default: 'all' -> Returns all available results.
+Possible entries are one or a combination (as comma-separated list) of the following:
+'gtf' - Returns the annotation (GTF).
+'cdna' - Returns the trancriptome (cDNA).
+'dna' - Returns the genome (DNA).
+'cds' - Returns the coding sequences corresponding to Ensembl genes. (Does not contain UTR or intronic sequence.)
+'cdrna' - Returns transcript sequences corresponding to non-coding RNA genes (ncRNA).
+'pep' - Returns the protein translations of Ensembl genes.

+

-r --release
+Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: latest Ensembl release.

+

-od --out_dir
+Path to the directory where the FTPs will be saved, e.g. path/to/directory/. Default: Current working directory.

+

-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-l --list_species
+Lists all available vertebrate species. (Python: combine with species=None.)

+

-liv --list_iv_species
+Lists all available invertebrate species. (Python: combine with species=None.)

+

-ftp --ftp
+Returns only the requested FTP links.

+

-d --download
+Command-line only. Downloads the requested FTPs to the directory specified by out_dir (requires curl to be installed).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Use gget ref in combination with kallisto | bustools to build a reference index:

+
kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens)
+
+

→ kb ref builds a reference index using the latest DNA and GTF files of species Homo sapiens passed to it by gget ref.

+



+

List all available genomes from Ensembl release 103:

+
gget ref --list_species -r 103
+
+
# Python
+gget.ref(species=None, list_species=True, release=103)
+
+

→ Returns a list with all available genomes (checks if GTF and FASTAs are available) from Ensembl release 103.
+(If no release is specified, gget ref will always return information from the latest Ensembl release.)

+



+

Get the genome reference for a specific species:

+
gget ref -w gtf,dna homo_sapiens
+
+
# Python
+gget.ref("homo_sapiens", which=["gtf", "dna"])
+
+

→ Returns a JSON with the latest human GTF and FASTA FTPs, and their respective metadata, in the format:

+
{
+    "homo_sapiens": {
+        "annotation_gtf": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz",
+            "ensembl_release": 106,
+            "release_date": "28-Feb-2022",
+            "release_time": "23:27",
+            "bytes": "51379459"
+        },
+        "genome_dna": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz",
+            "ensembl_release": 106,
+            "release_date": "21-Feb-2022",
+            "release_time": "09:35",
+            "bytes": "881211416"
+        }
+    }
+}
+
+

More examples

+

References

+

If you use gget ref in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/search.html b/en/search.html new file mode 100644 index 00000000..cafa9ca8 --- /dev/null +++ b/en/search.html @@ -0,0 +1,296 @@ + + + + + + gget search - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget search 🔎

+

Fetch genes and transcripts from Ensembl using free-form search terms.
+Results are matched based on the "gene name" and "description" sections in the Ensembl database. gget version >= 0.27.9 also includes results that match the Ensembl "synonym" section.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+searchwords
+One or more free form search words, e.g. gaba nmda. (Note: Search is not case-sensitive.)

+

Other required arguments
+-s --species
+Species or database to be searched.
+A species can be passed in the format 'genus_species', e.g. 'homo_sapiens' or 'arabidopsis_thaliana'.
+To pass a specific database, pass the name of the CORE database, e.g. 'mus_musculus_dba2j_core_105_1'.

+

All available core databases can be found here:
+Vertebrates: http://ftp.ensembl.org/pub/current/mysql/
+Invertebrates: http://ftp.ensemblgenomes.org/pub/current/ + select kingdom + go to mysql/

+

Supported shortcuts: 'human', 'mouse'

+

Optional arguments
+-r --release
+Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: None -> latest Ensembl release is used.

+

Note: The release argument does not apply to invertebrate species (you can pass a specific core database (which includes a release number) to the species argument instead). For invertebrate species, Ensembl only stores databases from 10 releases prior to the current release.

+

This argument is overwritten if a specific database (which includes a release number) is passed to the species argument.

+

-t --id_type
+'gene' (default) or 'transcript'
+Returns genes or transcripts, respectively.

+

-ao --andor
+'or' (default) or 'and'
+'or': Returns all genes that INCLUDE AT LEAST ONE of the searchwords in their name/description.
+'and': Returns only genes that INCLUDE ALL of the searchwords in their name/description.

+

-l --limit
+Limits the number of search results, e.g. 10. Default: None.

+

-o --out
+Path to the csv the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget search -s human gaba gamma-aminobutyric
+
+
# Python
+gget.search(["gaba", "gamma-aminobutyric"], "homo_sapiens")
+
+

→ Returns all genes that contain at least one of the search words in their name or Ensembl/external reference description:

+
+ + +
ensembl_idgene_nameensembl_descriptionext_ref_descriptionbiotypeurl
ENSG00000034713GABARAPL2GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]GABA type A receptor associated protein like 2protein_codinghttps://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713
. . .. . .. . .. . .. . .. . .
+
+

More examples

+

References

+

If you use gget search in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/seq.html b/en/seq.html new file mode 100644 index 00000000..f76a653d --- /dev/null +++ b/en/seq.html @@ -0,0 +1,279 @@ + + + + + + gget seq - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget seq 🧬

+

Fetch nucleotide or amino acid sequence(s) of a gene (and all its isoforms) or a transcript by Ensembl ID.
+Return format: FASTA.

+

Positional argument
+ens_ids
+One or more Ensembl IDs.

+

Optional arguments
+-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.fa. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-t --translate
+Returns amino acid (instead of nucleotide) sequences.
+Nucleotide sequences are fetched from Ensembl.
+Amino acid sequences are fetched from UniProt.

+

-iso --isoforms
+Returns the sequences of all known transcripts.
+(Only for gene IDs.)

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.seq(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Returns the nucleotide sequences of ENSG00000034713, ENSG00000104853, and ENSG00000170296 in FASTA format.

+
gget seq -t -iso ENSG00000034713
+
+
# Python
+gget.seq("ENSG00000034713", translate=True, isoforms=True)
+
+

→ Returns the amino acid sequences of all known transcripts of ENSG00000034713 in FASTA format.

+

More examples

+

References

+

If you use gget seq in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606

    +
  • +
  • +

    The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/setup.html b/en/setup.html new file mode 100644 index 00000000..108cca25 --- /dev/null +++ b/en/setup.html @@ -0,0 +1,252 @@ + + + + + + gget setup - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget setup 🔧

+

Function to install/download third-party dependencies for a specified gget module.

+

Positional argument
+module
+gget module for which dependencies should be installed.

+

Optional arguments
+-o --out
+Path to the folder downloaded files will be saved in (currently only applies to module = 'elm').
+NOTE: Do NOT use this argument when downloading the files for use with gget.elm.
+Default: None (downloaded files are saved inside the gget package installation folder).

+

Flags
+-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget setup alphafold
+
+
# Python
+gget.setup("alphafold")
+
+

→ Installs all (modified) third-party dependencies and downloads model parameters (~4GB) required to run gget alphafold.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/en/updates.html b/en/updates.html new file mode 100644 index 00000000..e66b303f --- /dev/null +++ b/en/updates.html @@ -0,0 +1,412 @@ + + + + + + What's New? - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

✨ What's new

+

Version ≥ 0.29.0 (Sep 25, 2024):

+
    +
  • New modules: + +
  • +
  • gget enrichr now also supports species other than human and mouse (fly, yeast, worm, and fish) via modEnrichR
  • +
  • gget mutate:
    +gget mutate will now merge identical sequences in the final file by default. Mutation creation was vectorized to decrease runtime. Improved flanking sequence check for non-substitution mutations to make sure no wildtype kmer is retained in the mutation-containing sequence. Addition of several new arguments to customize sequence generation and output.
  • +
  • gget cosmic:
    +Added support for targeted as well as gene screens. The CSV file created for gget mutate now also contains protein mutation info.
  • +
  • gget ref:
    +Added out file option.
  • +
  • gget info and gget seq:
    +Switched to Ensembl POST API to increase speed (nothing changes in front end).
  • +
  • Other "behind the scenes" changes: + +
  • +
+

Version ≥ 0.28.6 (Jun 2, 2024):

+
    +
  • New module: gget mutate
  • +
  • gget cosmic: You can now download entire COSMIC databases using the argument download_cosmic argument
  • +
  • gget ref: Can now fetch the GRCh37 genome assembly using species='human_grch37'
  • +
  • gget search: Adjust access of human data to the structure of Ensembl release 112 (fixes issue 129)
  • +
+

Version ≥ 0.28.5 (May 29, 2024):

+
    +
  • Yanked due to logging bug in gget.setup("alphafold") + inversion mutations in gget mutate only reverse the string instead of also computing the complementary strand
  • +
+

Version ≥ 0.28.4 (January 31, 2024):

+
    +
  • gget setup: Fix bug with filepath when running gget.setup("elm") on Windows OS.
  • +
+

Version ≥ 0.28.3 (January 22, 2024):

+
    +
  • gget search and gget ref now also support fungi 🍄, protists 🌝, and invertebrate metazoa 🐝 🐜 🐌 🐙 (in addition to vertebrates and plants)
  • +
  • New module: gget cosmic
  • +
  • gget enrichr: Fix duplicate scatter dots in plot when pathway names are duplicated
  • +
  • gget elm: +
      +
    • Changed ortho results column name 'Ortholog_UniProt_ID' to 'Ortholog_UniProt_Acc' to correctly reflect the column contents, which are UniProt Accessions. 'UniProt ID' was changed to 'UniProt Acc' in the documentation for all gget modules.
    • +
    • Changed ortho results column name 'motif_in_query' to 'motif_inside_subject_query_overlap'.
    • +
    • Added interaction domain information to results (new columns: "InteractionDomainId", "InteractionDomainDescription", "InteractionDomainName").
    • +
    • The regex string for regular expression matches was encapsulated as follows: "(?=(regex))" (instead of directly passing the regex string "regex") to enable capturing all occurrences of a motif when the motif length is variable and there are repeats in the sequence (https://regex101.com/r/HUWLlZ/1).
    • +
    +
  • +
  • gget setup: Use the out argument to specify a directory the ELM database will be downloaded into. Completes this feature request.
  • +
  • gget diamond: The DIAMOND command is now run with --ignore-warnings flag, allowing niche sequences such as amino acid sequences that only contain nucleotide characters and repeated sequences. This is also true for DIAMOND alignments performed within gget elm.
  • +
  • gget ref and gget search back-end change: the current Ensembl release is fetched from the new release file on the Ensembl FTP site to avoid errors during uploads of new releases.
  • +
  • gget search: +
      +
    • FTP link results (--ftp) are saved in txt file format instead of json.
    • +
    • Fix URL links to Ensembl gene summary for species with a subspecies name and invertebrates.
    • +
    +
  • +
  • gget ref: +
      +
    • Back-end changes to increase speed
    • +
    • New argument: list_iv_species to list all available invertebrate species (can be combined with the release argument to fetch all species available from a specific Ensembl release)
    • +
    +
  • +
+

Version ≥ 0.28.2 (November 15, 2023):

+
    +
  • gget info: Return a logging error message when the NCBI server fails for a reason other than a fetch fail (this is an error on the server side rather than an error with gget)
  • +
  • Replace deprecated 'text' argument to find()-type methods whenever used with dependency BeautifulSoup
  • +
  • gget elm: Remove false positive and true negative instances from returned results
  • +
  • gget elm: Add expand argument
  • +
+

Version ≥ 0.28.0 (November 5, 2023):

+ +

Version ≥ 0.27.9 (August 7, 2023):

+
    +
  • gget enrichr: Use new argument background_list to provide a list of background genes
  • +
  • gget search now also searches Ensembl synonyms (in addition to gene descriptions and names) to return more comprehensive search results (thanks to Samuel Klein for the suggestion)
  • +
+

Version ≥ 0.27.8 (July 12, 2023):

+
    +
  • gget search: Specify the Ensembl release from which information is fetched with new argument -r --release
  • +
  • Fixed bug in gget pdb (this bug was introduced in version 0.27.5)
  • +
+

Version ≥ 0.27.7 (May 15, 2023):

+ +

Version ≥ 0.27.6 (May 1, 2023) (YANKED due to problems with dependencies -> replaced with version 0.27.7):

+ +

Version ≥ 0.27.5 (April 6, 2023):

+
    +
  • Updated gget search to function correctly with new Pandas version 2.0.0 (released on April 3rd, 2023) as well as older versions of Pandas
  • +
  • Updated gget info with new flags uniprot and ncbi which allow turning off results from these databases independently to save runtime (note: flag ensembl_only was deprecated)
  • +
  • All gget modules now feature a -q / --quiet (Python: verbose=False) flag to turn off progress information
  • +
+

Version ≥ 0.27.4 (March 19, 2023):

+ +

Version ≥ 0.27.3 (March 11, 2023):

+
    +
  • gget info excludes PDB IDs by default to increase speed (PDB results can be included using flag --pdb / pdb=True).
  • +
+

Version ≥ 0.27.2 (January 1, 2023):

+ +

Version ≥ 0.27.0 (December 10, 2022):

+
    +
  • Updated gget alphafold to match recent changes by DeepMind
  • +
  • Updated version number to match gget's creator's age following a long-standing Pachter lab tradition
  • +
+

Version ≥ 0.3.13 (November 11, 2022):

+ +

Version ≥ 0.3.12 (November 10, 2022):

+
    +
  • gget info now also returns subcellular localisation data from UniProt
  • +
  • New gget info flag ensembl_only returns only Ensembl results
  • +
  • Reduced runtime for gget info and gget seq
  • +
+

Version ≥ 0.3.11 (September 7, 2022):

+ +

Version ≥ 0.3.10 (September 2, 2022):

+ +

Version ≥ 0.3.9 (August 25, 2022):

+ +

Version ≥ 0.3.8 (August 12, 2022):

+
    +
  • Fixed mysql-connector-python version requirements
  • +
+

Version ≥ 0.3.7 (August 9, 2022):

+
    +
  • NOTE: The Ensembl FTP site changed its structure on August 8, 2022. Please upgrade to gget version ≥ 0.3.7 if you use gget ref
  • +
+

Version ≥ 0.3.5 (August 6, 2022):

+ +

Version ≥ 0.2.6 (July 7, 2022):

+
    +
  • gget ref now supports plant genomes! 🌱
  • +
+

Version ≥ 0.2.5 (June 30, 2022):

+
    +
  • NOTE: UniProt changed the structure of their API on June 28, 2022. Please upgrade to gget version ≥ 0.2.5 if you use any of the modules querying data from UniProt (gget info and gget seq).
  • +
+

Version ≥ 0.2.3: (June 26, 2022):

+
    +
  • JSON is now the default output format for the command-line interface for modules that previously returned data frame (CSV) format by default (the output can be converted to data frame/CSV using flag [-csv][--csv]). Data frame/CSV remains the default output for Jupyter Lab / Google Colab (and can be converted to JSON with json=True).
  • +
  • For all modules, the first required argument was converted to a positional argument and should not be named anymore in the command-line, e.g. gget ref -s humangget ref human.
  • +
  • gget info: [--expand] is deprecated. The module will now always return all of the available information.
  • +
  • Slight changes to the output returned by gget info, including the return of versioned Ensembl IDs.
  • +
  • gget info and gget seq now support 🪱 WormBase and 🪰 FlyBase IDs.
  • +
  • gget archs4 and gget enrichr now also take Ensembl IDs as input with added flag [-e][--ensembl] (ensembl=True in Jupyter Lab / Google Colab).
  • +
  • gget seq argument seqtype was replaced by flag [-t][--translate] (translate=True/False in Jupyter Lab / Google Colab) which will return either nucleotide (False) or amino acid (True) sequences.
  • +
  • gget search argument seqtype was renamed to id_type for clarity (still taking the same arguments 'gene' or 'transcript').
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/alphafold.html b/es/alphafold.html new file mode 100644 index 00000000..1097ae8d --- /dev/null +++ b/es/alphafold.html @@ -0,0 +1,305 @@ + + + + + + gget alphafold - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget alphafold 🪢

+

Predice la estructura en 3D de cualquier proteína derivada de su secuencia de aminoácidos usando una versión simplificada del algoritmo AlphaFold2 de DeepMind, originalmente producido y publicado para AlphaFold Colab.
+Resultado: Predicción de la estructura (en formato PDB) y el errór de alineación (en formato json).

+

Antes de usar gget alphafold por primera vez:

+
    +
  1. Instale openmm v7.5.1 (o v7.7.0 para Python >= 3.10) ejecutando el siguiente comando desde la línea de comando:
    +conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1
    +(reemplazar con openmm=7.7.0 para Python >= 3.10)
    +Recomendación: siga con conda update -qy conda para actualizar conda a la última versión.
  2. +
  3. Corre gget setup alphafold / gget.setup("alphafold") (ver también gget setup). Al ejecutar gget setup alphafold / gget.setup("alphafold") se descargará e instalará la última versión de AlphaFold2 alojada en el AlphaFold GitHub Repo. Puede volver a ejecutar este comando en cualquier momento para actualizar el software cuando hay una nueva versión de AlphaFold.
  4. +
+

Parámetro posicional
+sequence
+Secuencia de aminoácidos (str), o una lista de secuencias (gget alphafold automaticamente usa el algoritmo del multímero si múltiples secuencias son ingresadas), o una ruta a un archivo formato FASTA.

+

Parámetros optionales
+-mr --multimer_recycles
+El algoritmo de multímero se reciclara hasta que las predicciones dejen de cambiar, el limite de ciclos esta indicado aqui. Por defecto: 3
+Para obtener más exactitud, ajusta este limite a 20 (al costo de ejecuciones mas tardadas).

+

-o --out
+Ruta a la carpeta para guardar los resultados de la predicción (str). Por defecto: "./[fecha_tiempo]_gget_alphafold_prediction".

+

Banderas
+-mfm --multimer_for_monomer
+Usa el algoritmo de multímero para un monómero.

+

-r --relax
+Relaja el mejor modelo con el algoritmo AMBER.

+

-q --quiet
+Uso limitado para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False.

+

plot
+Solo para Python. plot=True provée una visualización interactiva de la predicción con el errór de alineación en 3D con py3Dmol y matplotlib (por defecto: True).

+

show_sidechains
+Solo para Python. show_sidechains=True incluye las cadenas laterales de proteínas en el esquema (por defecto: True).

+

Ejemplo

+
# Predice la estructura de una proteína derivada de su secuencia de aminoácidos
+gget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo
+gget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.
+gget pdb 3UQ3 -o 3UQ3.pdb
+gget pdb 2K42 -o 2K42.pdb
+
+
# Python
+# Predice la estructura de una proteína derivada de su secuencia de aminoácidos
+gget.alphafold("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH")
+
+# Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo
+gget.blast("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH", database="pdbaa")
+
+# Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.
+gget.pdb("3UQ3", save=True)
+gget.pdb("2K42", save=True)
+
+

gget alphafold produce la estructura predecida (en formato PDB) y el errór de alineación (en formato json) en una nueva carpeta ("./[fecha_tiempo]_gget_alphafold_prediction"). Este ejemplo demuestra como usar gget blast y gget pdb para correr un análisis comparativo. Los archivos PDB se pueden ver en 3D con RCSB 3D view, o usando programas como PyMOL o Blender. Para comparar múltiples archivos PDB, use RCSB alignment. Python también produce esquemas interactivos, los cuales se pueden generar de los archivos PDB y JSON, como es describido en gget alphafold FAQ Q4.

+ +

Tutoriales

+

🔗 Google Colab tutorial

+

🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas

+

🔗 gget alphafold - preguntas más frecuentes

+

Citar

+

Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos:

+ +

Y, si corresponde:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/archs4.html b/es/archs4.html new file mode 100644 index 00000000..460354a2 --- /dev/null +++ b/es/archs4.html @@ -0,0 +1,302 @@ + + + + + + gget archs4 - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no es especificado de otra manera. Las banderas son designadas como cierto o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede obtener desde Terminal con la bandera -h --help.

+
+

gget archs4 🐁

+

Encuentra los genes más correlacionados a un gen de interés, o bién, encuentra los tejidos donde un gen se expresa usando la base de datos ARCHS4.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+gene
+Nombre corto (símbolo del gen) del gen de interés, p. ej. STAT4.
+Alternativamente: usa la bandera --ensembl para ingresar un ID tipo Ensembl, p. ej. ENSG00000138378.

+

Parámetros optionales
+-w --which
+'correlation' (correlación; se usa por defecto) o 'tissue' (tejido).
+'correlation' produce una tabla que contiene los 100 genes más correlacionados con el gen de interés. La correlación de Pearson se calcula de todas las muestras y tejidos en ARCHS4.
+'tissue' produce un atlas de expresión tisular calculado de todas las muestras humanas o de ratón (según lo definido usando el parámetro --species (especies)) en ARCHS4.

+

-s --species
+'human' (humano; se usa por defecto) o 'mouse' (ratón).
+Define si se usan muestras humanas o de ratón de ARCHS4.
+(Solo aplica para el atlas de expresión tisular.)

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, use save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-e --ensembl
+Usa esta bandera si gene se ingresa como ID tipo Ensembl.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para obtener los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
gget archs4 ACE2
+
+
# Python
+gget.archs4("ACE2")
+
+

→ Produce los 100 genes más correlacionados con el gen ACE2:

+
+ + + +
gene_symbolpearson_correlation
SLC5A10.579634
CYP2C180.576577
. . .. . .
+
+



+
gget archs4 -w tissue ACE2
+
+
# Python
+gget.archs4("ACE2", which="tissue")
+
+

→ Produce la expresión tisular de ACE2 (por defecto, se utilizan datos humanos):

+
+ + + +
idminq1medianq3max
System.Urogenital/Reproductive System.Kidney.RENAL CORTEX0.1136448.2740609.69584010.5167011.21970
System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL0.1136445.9055609.57045013.2647013.83590
. . .. . .. . .. . .. . .. . .
+
+



+Consulte este tutorial de Dave Tang, quien escribió un script R para crear esta visualización con los resultados de gget archs4 en formato JSON:

+

image

+

Más ejemplos

+

Citar

+

Si utiliza gget archs4 en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

    +
  • +
  • +

    Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/blast.html b/es/blast.html new file mode 100644 index 00000000..c6c409bd --- /dev/null +++ b/es/blast.html @@ -0,0 +1,295 @@ + + + + + + gget blast - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget blast 💥

+

BLAST una secuencia de nucleótidos o aminoácidos a cualquier base de datos BLAST.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+sequence
+Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt.

+

Parámetros optionales
+-p --program
+'blastn', 'blastp', 'blastx', 'tblastn', o 'tblastx'.
+Por defecto: 'blastn' para secuencias de nucleótidos; 'blastp' para secuencias de aminoácidos.

+

-db --database
+'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', o 'pdbnt'.
+Por defecto: 'nt' para secuencias de nucleótidos; 'nr' para secuencias de aminoácidos.
+Más información sobre los bases de datos BLAST

+

-l --limit
+Limita el número de resultados producidos. Por defecto: 50.

+

-e --expect
+Define el umbral de 'expect value'. Por defecto: 10.0.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-lcf --low_comp_filt
+Activa el 'low complexity filter' (filtro de baja complejidad).

+

-mbo --megablast_off
+Desactiva el algoritmo MegaBLAST. Por defecto: MegaBLAST esta activado (solo aplicable para blastn).

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blast("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR")
+
+

→ Produce los resultados BLAST de la secuencia de interés. gget blast automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el programa BLAST en blastp con la base de datos nr.

+
+ + +
DescriptionScientific NameCommon NameTaxidMax ScoreTotal ScoreQuery Cover...
PREDICTED: gamma-aminobutyric acid receptor-as...Colobus angolensis palliatusNaN336983180180100%...
. . .. . .. . .. . .. . .. . .. . ....
+
+

BLAST desde un archivo .fa o .txt:

+
gget blast fasta.fa
+
+
# Python
+gget.blast("fasta.fa")
+
+

→ Produce los resultados BLAST de la primera secuencia contenida en el archivo 'fasta.fa'.

+

Más ejemplos

+

Citar

+

Si utiliza gget blast en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/blat.html b/es/blat.html new file mode 100644 index 00000000..8ee7cbf5 --- /dev/null +++ b/es/blat.html @@ -0,0 +1,276 @@ + + + + + + gget blat - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget blat 🎯

+

Encuentra la ubicación genómica de una secuencia de nucleótidos o aminoácidos usando BLAT.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+sequence
+Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt.

+

Parámetros optionales
+-st --seqtype
+'DNA', 'protein', 'translated%20RNA', o 'translated%20DNA'.
+Por defecto: 'DNA' para secuencias de nucleótidos; 'protein' para secuencias de aminoácidos.

+

-a --assembly
+Ensamblaje del genoma. 'human' (hg38) (se usa por defecto), 'mouse' (mm39) (ratón), 'zebrafish' (taeGut2) (pinzón cebra),
+o cualquiera de los ensamblajes de especies disponibles aquí (use el nombre corto del ensamblado, p. ej. 'hg38').

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blat("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR", assembly="taeGut2")
+
+

→ Produce los resultados de BLAT para el ensamblaje taeGut2 (pinzón cebra). En este ejemplo, gget blat automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el tipo de secuencia (--seqtype) como proteína.

+
+ +
genomequery_sizealigned_startaligned_endmatchesmismatches%_aligned...
taeGut288128877087.5...
+
+

Màs ejemplos

+

Citar

+

Si utiliza gget blat en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/cellxgene.html b/es/cellxgene.html new file mode 100644 index 00000000..c68336b6 --- /dev/null +++ b/es/cellxgene.html @@ -0,0 +1,340 @@ + + + + + + gget cellxgene - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget cellxgene 🍱

+

Query data de la base de datos CZ CELLxGENE Discover usando CZ CELLxGENE Discover Census.
+Produce: Un objeto AnnData que contiene la matriz de recuentos de genes y los metadatos de resultados de single cell RNA-seq de los tejidos/genes/etcetera previamente definidos.

+

Antes de usar gget cellxgene por primera vez, corre gget setup cellxgene / gget.setup("cellxgene") (ver también gget setup).

+

Parámetros opcionales
+-s --species
+'homo_sapiens' o 'mus_musculus'. Por defecto: 'homo_sapiens'.

+

-g --gene
+Str o lista de genes de interés o ID(s) tipo Ensembl. Por defecto: None (ninguno).
+Atención: Utilice la bandera -e / --ensembl (Python: ensembl=True) cuando ingrese ID(s) tipo Ensembl.
+Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de genes.

+

-cv --census_version
+Versión del CZ CELLxGENE Discover Census (str), p. ej. "2023-05-15", o "latest" (ultima) o "stable" (estable). Por defecto: "stable" (estable).

+

-cn --column_names
+Lista de columnas de metadatos a obtener (almacenadas en AnnData.obs).
+Por defecto: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type']
+Para más opciones, ver: https://api.cellxgene.cziscience.com/curation/ui/#/ -> 'Schemas' -> 'dataset'

+

-o --out
+Ruta al archivo para guardar el objeto AnnData formato .h5ad (o .csv con bandera -mo / --meta_only).
+¡Requerido cuando se usa desde Terminal!

+

Banderas
+-e --ensembl
+Usa esta bandera si gene se ingresa como ID tipo Ensembl.

+

-mo --meta_only
+Solo produce la tabla (Dataframe) con metadatos (corresponde a AnnData.obs).

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Parámetros opcionales correspondientes a los atributos de metadatos de CZ CELLxGENE Discover
+--tissue
+Str o lista de tejido(s), p. ej. ['lung', 'blood']. Por defecto: None.
+Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de tejidos.

+

--cell_type
+Str o lista de tipo(s) de célula(s), p. ej. ['mucus secreting cell', 'neuroendocrine cell']. Por defecto: None.
+Ver https://cellxgene.cziscience.com/gene-expression y seleccione un tejido para ejemplos de tipos de células.

+

--development_stage
+Str o lista de etapa(s) de desarrollo. Por defecto: None.

+

--disease
+Str o lista de enfermedad(es). Por defecto: None.

+

--sex
+Str o lista de sexo(s), p. ej. 'female' (femenina). Por defecto: None.

+

--dataset_id
+Str o lista de CELLxGENE ID(s). Por defecto: None.

+

--tissue_general_ontology_term_id
+Str o lista de tejido(s) del tipo high-level UBERON ID. Por defecto: None.
+Tejidos y sus IDs tipo UBERON se enumeran aquí.

+

--tissue_general
+Str o lista de tejido(s) del tipo high-level. Por defecto: None.
+Tejidos y sus IDs de UBERON se enumeran aquí.

+

--tissue_ontology_term_id
+Str o lista de ID(s) de 'tissue ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--assay_ontology_term_id
+Str o lista de ID(s) de 'assay ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--assay
+Str o lista de 'assays' (métodos) como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--cell_type_ontology_term_id
+Str o lista de ID(s) de 'celltype ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--development_stage_ontology_term_id
+Str o lista de ID(s) de 'development stage ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--disease_ontology_term_id
+Str o lista de ID(s) de 'disease ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--donor_id
+Str o lista de ID(s) de 'donor' (donador) como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--self_reported_ethnicity_ontology_term_id
+Str o lista de ID(s) de 'self-reported ethnicity ontology' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--self_reported_ethnicity
+Str o lista de etnias autoinformadas como están definidas en el esquema de datos del CELLxGENE. Por defecto: None.

+

--sex_ontology_term_id
+Str o lista de ID(s) de 'sex ontology' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--suspension_type
+Str o lista de tipo(s) de suspensión como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

Ejemplo

+
gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad
+
+
# Python
+adata = gget.cellxgene(
+    gene = ["ACE2", "ABCA1", "SLC5A1"],
+    tissue = "lung",
+    cell_type = ["mucus secreting cell", "neuroendocrine cell"]
+)
+adata
+
+

→ Produce un objeto AnnData que contiene la matriz de recuentos de scRNAseq de los genes ACE2, ABCA1 y SLC5A1 en 3322 células secretoras de mucosidad y neuroendocrinas pulmonares humanas y sus metadatos correspondientes.

+



+

Obtiene solo los metadatos (corresponde a AnnData.obs):

+
gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv
+
+
# Python
+df = gget.cellxgene(
+    meta_only = True,
+    gene = "ENSMUSG00000015405",
+    ensembl = True,
+    tissue = "lung",  
+    species = "mus_musculus"
+)
+df
+
+

→ Produce solo los metadatos de los conjuntos de datos de ENSMUSG00000015405 (ACE2), los cuales corresponden a células pulmonares murinas.

+

Ver también: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html

+

Citar

+

Si utiliza gget cellxgene en una publicación, favor de citar los siguientes artículos:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/cite.html b/es/cite.html new file mode 100644 index 00000000..d7e1fa17 --- /dev/null +++ b/es/cite.html @@ -0,0 +1,383 @@ + + + + + + Cómo citar - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

license

+

Citar

+

Si utiliza gget en una publicación, favor de citar:
+Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

+
    +
  • +

    Si utiliza gget alphafold, favor de citar también:

    + +

    Y si aplica:

    + +
  • +
  • +

    Si utiliza gget archs4, favor de citar también:

    +
      +
    • +

      Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

      +
    • +
    • +

      Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

      +
    • +
    +
  • +
  • +

    Si utiliza gget bgee, favor de citar también:

    +
      +
    • Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793
    • +
    +
  • +
  • +

    Si utiliza gget blast, favor de citar también:

    +
      +
    • Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.
    • +
    +
  • +
  • +

    Si utiliza gget blat, favor de citar también:

    +
      +
    • Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.
    • +
    +
  • +
  • +

    Si utiliza gget cbio, favor de citar también:

    +
      +
    • +

      Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

      +
    • +
    • +

      Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

      +
    • +
    • +

      de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

      +
    • +
    • +

      Please also cite the source of the data if you are using a publicly available dataset.

      +
    • +
    +
  • +
  • +

    Si utiliza gget cellxgene, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget cosmic, favor de citar también:

    +
      +
    • Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.
    • +
    +
  • +
  • +

    Si utiliza gget diamond, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget elm, favor de citar también:

    +
      +
    • +

      Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

      +
    • +
    • +

      Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

      +
    • +
    +
  • +
  • +

    Si utiliza gget enrichr, favor de citar también:

    +
      +
    • +

      Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

      +
    • +
    • +

      Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

      +
    • +
    • +

      Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

      +
    • +
    +

    Si trabaja con conjuntos de datos no humanos/ratón, cite también:

    +
      +
    • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
    • +
    +
  • +
  • +

    Si utiliza gget info, favor de citar también:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
  • +

    Si utiliza gget muscle, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget opentargets, favor de citar también:

    +
      +
    • Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.
    • +
    +
  • +
  • +

    Si utiliza gget pdb, favor de citar también:

    +
      +
    • Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.
    • +
    +
  • +
  • +

    Si utiliza gget ref o gget search, favor de citar también:

    +
      +
    • Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.
    • +
    +
  • +
  • +

    Si utiliza gget seq, favor de citar también:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
+
+

Descargo de responsabilidad

+

gget es tan preciso como la base de datos/servidores/APIs que utiliza. La exactitud o fiabilidad de los datos no es garantizada por ningún motivo. Los proveedores por ningún motivo seran responsables de (incluyendo, sin limite alguno) la calidad, ejecución, o comerciabilidad para cualquier propósito particular surgiendo del uso o la incapacidad de usar los datos.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/code_of_conduct.html b/es/code_of_conduct.html new file mode 100644 index 00000000..710dfc0b --- /dev/null +++ b/es/code_of_conduct.html @@ -0,0 +1,280 @@ + + + + + + Codigo de conducto - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Código de Conducta convenido para Contribuyentes

+

Nuestro compromiso

+

Nosotros, como miembros, contribuyentes y administradores nos comprometemos a hacer de la participación en nuestra comunidad sea una experiencia libre de acoso para todo el mundo, independientemente de la edad, dimensión corporal, discapacidad visible o invisible, etnicidad, características sexuales, identidad y expresión de género, nivel de experiencia, educación, nivel socio-económico, nacionalidad, apariencia personal, raza, casta, color, religión, o identidad u orientación sexual.

+

Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y sana.

+

Nuestros estándares

+

Ejemplos de comportamientos que contribuyen a crear un ambiente positivo para nuestra comunidad:

+
    +
  • Demostrar empatía y amabilidad ante otras personas
  • +
  • Respeto a diferentes opiniones, puntos de vista y experiencias
  • +
  • Dar y aceptar adecuadamente retroalimentación constructiva
  • +
  • Aceptar la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, aprendiendo de la experiencia
  • +
  • Centrarse en lo que sea mejor no sólo para nosotros como individuos, sino para la comunidad en general
  • +
+

Ejemplos de comportamiento inaceptable:

+
    +
  • El uso de lenguaje o imágenes sexualizadas, y aproximaciones o +atenciones sexuales de cualquier tipo
  • +
  • Comentarios despectivos (trolling), insultantes o derogatorios, y ataques personales o políticos
  • +
  • El acoso en público o privado
  • +
  • Publicar información privada de otras personas, tales como direcciones físicas o de correo +electrónico, sin su permiso explícito
  • +
  • Otras conductas que puedan ser razonablemente consideradas como inapropiadas en un +entorno profesional
  • +
+

Aplicación de las responsabilidades

+

Los administradores de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán acciones apropiadas y correctivas de forma justa en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino.

+

Los administradores de la comunidad tendrán el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, commits, código, ediciones de páginas de wiki, issues y otras contribuciones que no se alineen con este Código de Conducta, y comunicarán las razones para sus decisiones de moderación cuando sea apropiado.

+

Alcance

+

Este código de conducta aplica tanto a espacios del proyecto como a espacios públicos donde un individuo esté en representación del proyecto o comunidad. Ejemplos de esto incluyen el uso de la cuenta oficial de correo electrónico, publicaciones a través de las redes sociales oficiales, o presentaciones con personas designadas en eventos en línea o no.

+

Aplicación

+

Instancias de comportamiento abusivo, acosador o inaceptable de otro modo podrán ser reportadas a los administradores de la comunidad responsables del cumplimiento a través de lpachter@caltech.edu. Todas las quejas serán evaluadas e investigadas de una manera puntual y justa.

+

Todos los administradores de la comunidad están obligados a respetar la privacidad y la seguridad de quienes reporten incidentes.

+

Guías de Aplicación

+

Los administradores de la comunidad seguirán estas Guías de Impacto en la Comunidad para determinar las consecuencias de cualquier acción que juzguen como un incumplimiento de este Código de Conducta:

+

1. Corrección

+

Impacto en la Comunidad: El uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no acogedor en la comunidad.

+

Consecuencia: Un aviso escrito y privado por parte de los administradores de la comunidad, proporcionando claridad alrededor de la naturaleza de este incumplimiento y una explicación de por qué el comportamiento es inaceptable. Una disculpa pública podría ser solicitada.

+

2. Aviso

+

Impacto en la Comunidad: Un incumplimiento causado por un único incidente o por una cadena de acciones.

+

Consecuencia: Un aviso con consecuencias por comportamiento prolongado. No se interactúa con las personas involucradas, incluyendo interacción no solicitada con quienes se encuentran aplicando el Código de Conducta, por un periodo especificado de tiempo. Esto incluye evitar las interacciones en espacios de la comunidad, así como a través de canales externos como las redes sociales. Incumplir estos términos puede conducir a una expulsión temporal o permanente.

+

3. Expulsión temporal

+

Impacto en la Comunidad: Una serie de incumplimientos de los estándares de la comunidad, incluyendo comportamiento inapropiado continuo.

+

Consecuencia: Una expulsión temporal de cualquier forma de interacción o comunicación pública con la comunidad durante un intervalo de tiempo especificado. No se permite interactuar de manera pública o privada con las personas involucradas, incluyendo interacciones no solicitadas con quienes se encuentran aplicando el Código de Conducta, durante este periodo. Incumplir estos términos puede conducir a una expulsión permanente.

+

4. Expulsión permanente

+

Impacto en la Comunidad: Demostrar un patrón sistemático de incumplimientos de los estándares de la comunidad, incluyendo conductas inapropiadas prolongadas en el tiempo, acoso de individuos, o agresiones o menosprecio a grupos de individuos.

+

Consecuencia: Una expulsión permanente de cualquier tipo de interacción pública con la comunidad del proyecto.

+

Atribución

+

Este Código de Conducta es una adaptación del Contributor Covenant, versión 2.1, +disponible en https://www.contributor-covenant.org/es/version/2/1/code_of_conduct.html

+

Las Guías de Impacto en la Comunidad están inspiradas en la escalera de aplicación del código de conducta de Mozilla.

+

Para respuestas a las preguntas frecuentes de este código de conducta, consulta las FAQ en +https://www.contributor-covenant.org/faq. Hay traducciones disponibles en https://www.contributor-covenant.org/translationshttps://www.contributor-covenant.org/translations

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/contributing.html b/es/contributing.html new file mode 100644 index 00000000..43ce228f --- /dev/null +++ b/es/contributing.html @@ -0,0 +1,303 @@ + + + + + + Guía de contribución - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

Bienvenido a la guía de contribución de gget

+

¡Gracias por invertir su tiempo en contribuir con nuestro proyecto! Cualquier contribución que hagas se verá reflejada en el repositorio de GitHub de gget. ✨

+

Lea nuestro Código de conducta para mantener nuestra comunidad accesible y respetable.

+

En esta guía, obtendrá una descripción general del flujo de trabajo de contribución desde la creación de un GitHub Issue (asunto) o la creación de un GitHub Pull Request (PR) hasta la revisión y fusión de un PR.

+

Issues (asuntos)

+

Crear un nuevo Issue

+

Si detecta un problema con gget o tiene una idea para una nueva función, comproba si ya existe un Issue para este problema/sugerencia. Si no existe un Issue relacionado, puede abrir un nuevo Issue utilizando el formulario correspondiente.

+

Resolver un Issue

+

Explore nuestros Issues existentes para encontrar uno que le interese. Puede restringir la búsqueda utilizando "labels" como filtros. Si encuentra un Issue en el que desea trabajar, puede abrir un PR con una solución.

+

Contribuir a través de Pull Requests (PRs)

+

Empezar

+
    +
  1. Bifurcar ("fork") el repositorio de GitHub de gget.
  2. +
+ +
    +
  1. ¡Cree una rama de trabajo y comience con sus cambios!
  2. +
+

Confirma sus actualizaciones

+

Confirme sus cambios una vez que esté satisfecho con ellos.

+

‼️ Auto-revisa lo siguiente antes de crear un PR ‼️

+
    +
  1. Revise el contenido para mantener precisión técnica.
  2. +
  3. Edite los cambios/comentarios de gramática, ortografía y adherencia al estilo general del código de gget existente.
  4. +
  5. Formatee su código usando "black".
  6. +
  7. Asegúrese de que las pruebas unitarias pasen: +
      +
    • Las dependencias de desarrollador se pueden instalar con pip install -r dev-requirements.txt
    • +
    • Ejecute pruebas unitarias existentes desde la carpeta de gget con coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests*
    • +
    +
  8. +
  9. Agregue nuevas pruebas unitarias si corresponde: +
      +
    • Los parámetros y los resultados esperados se pueden encontrar en archivos json en ./tests/fixtures/
    • +
    • Las pruebas unitarias se pueden agregar a ./tests/test_*.py y serán detectado automáticamente
    • +
    +
  10. +
  11. Asegúrese de que las ediciones sean compatibles tanto con Python como con la Terminal +
      +
    • Los parámetros para la Terminal se definen en ./gget/main.py
    • +
    +
  12. +
  13. Agregue módulos/argumentos nuevos a la documentación, si corresponde: +
      +
    • El manual de cada módulo se puede editar/añadir como ./docs/src/*.md
    • +
    +
  14. +
+

Si tiene alguna pregunta, no dude en iniciar una discusión o crear un Issue como se describe anteriormente.

+

Crear un Pull Request (PR)

+

Cuando haya terminado con los cambios, cree un Pull Request, también conocido como "PR".

+

‼️ Realice todos los PRs contra la rama dev del repositorio gget

+ +

Una vez que envíe su PR, un miembro del equipo gget revisará su propuesta. Podemos hacer preguntas o solicitar información adicional.

+

¡Su PR está fusionado!

+

¡Felicidades! 🎉 El equipo de gget te lo agradece. ✨

+

Una vez que su PR se fusione, sus contribuciones serán visibles públicamente en el repositorio de gget.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/cosmic.html b/es/cosmic.html new file mode 100644 index 00000000..a5599f42 --- /dev/null +++ b/es/cosmic.html @@ -0,0 +1,318 @@ + + + + + + gget cosmic - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget cosmic 🪐

+

Busque genes, mutaciones, etc. asociados con cánceres utilizando la base de datos COSMIC (Catálogo de mutaciones somáticas en cáncer).
+Produce: JSON (línea de comandos) o marco de datos/CSV (Python) cuando download_cosmic=False. Cuando download_cosmic=True, descarga la base de datos solicitada en la carpeta especificada.

+

Este módulo fue escrito en parte por @AubakirovArman (consulta de información) y @josephrich98 (descarga de base de datos).

+

NOTA: Se aplican tarifas de licencia para el uso comercial de COSMIC. Puede leer más sobre la concesión de licencias de datos COSMIC aquí.

+

Parámetro posicional (para consultar información)
+searchterm
+Término de búsqueda, que puede ser una mutación, un nombre de gen (o ID de Ensembl), una muestra, etc.
+Ejemplos para los argumentos de searchterm y entidad:

+
+ + + + + + + + + + +
searchtermentidad
EGFRmutaciones-> Encuentra mutaciones en el gen EGFR asociadas con el cáncer
v600emutaciones-> Encuentra genes para los cuales una mutación v600e está asociada con el cáncer
COSV57014428mutaciones-> Encuentra mutaciones asociadas con esta ID de mutaciones COSMIC
EGFRgenes-> Obtiene el número de muestras, mutaciones simples/codificantes y fusiones observadas en COSMIC para EGFR
prostatecáncer-> Obtiene el número de muestras probadas y mutaciones para el cáncer de próstata
prostatesitio_tumoral-> Obtiene el número de muestras probadas, genes, mutaciones, fusiones, etc. con 'próstata' como sitio de tejido primario
ICGCestudios-> Obtiene el código de proyecto y descripciones de todos los estudios de ICGC (Consortio Internacional del Genoma del Cáncer)
EGFRpubmed-> Encuentra publicaciones de PubMed sobre EGFR y cáncer
ICGCmuestras-> Obtiene metadatos sobre todas las muestras de ICGC (Consortio Internacional del Genoma del Cáncer)
COSS2907494muestras-> Obtiene metadatos sobre esta ID de muestra COSMIC (tipo de cáncer, tejido, # genes analizados, # mutaciones, etc.)
+
+

NOTA: (Solo Python) Establezca en None cuando se descarguen bases de datos COSMIC con download_cosmic=True.

+

Parámetros opcionales (para consultar información)
+-e --entity
+'mutations' (predeterminado), 'genes', 'cáncer', 'sitio_tumoral', 'estudios', 'pubmed' o 'muestras'. +Define el tipo de resultados a devolver.

+

-l --limit
+Limita el número de resultados a devolver. Predeterminado: 100.

+

Banderas (para descargar bases de datos COSMIC)
+-d --download_cosmic
+Conmuta al modo de descarga de base de datos.

+

-gm --gget_mutate
+DESACTIVA la creación de una versión modificada de la base de datos para usar con gget mutate. +Python: gget_mutate es Verdadero por defecto. Establezca gget_mutate=False para deshabilitar.

+

Parámetros opcionales (para descargar bases de datos COSMIC)
+-mc --mutation_class
+'cancer' (predeterminado), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', o 'cancer_example'
+Tipo de base de datos COSMIC para descargar.

+

-cv --cosmic_version
+Versión de la base de datos COSMIC. Predeterminado: Ninguno -> Se establece en la última versión por defecto.

+

-gv --grch_version
+Versión del genoma de referencia humano GRCh en el que se basó la base de datos COSMIC (37 o 38). Predeterminado: 37

+

Parámetros opcionales (generales)
+-o --out
+Ruta al archivo (o carpeta cuando se descargan bases de datos con el flag download_cosmic) donde se guardarán los resultados, p. ej. 'ruta/a/resultados.json'.
+Predeterminado: None
+-> Cuando download_cosmic=False: Los resultados se devolverán a la salida estándar
+-> Cuando download_cosmic=True: La base de datos se descargará en el directorio de trabajo actual

+

Banderas (generales)
+-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.

+

Por ejemplo

+

Consultar información

+
gget cosmic -e genes EGFR
+
+
# Python
+gget.cosmic("EGFR", entity="genes")
+
+

→ Devuelve mutaciones en el gen EGFR asociadas con el cáncer en el formato:

+
+ + + +
GeneSyntaxAlternate IDsCanonical
EGFRc.*2446A>GEGFR c.*2446A>G, EGFR p.?, ...y
EGFRc.(2185_2283)ins(18)EGFR c.(2185_2283)ins(18), EGFR p.?, ...y
. . .. . .. . .. . .
+
+

Descargar bases de datos COSMIC

+
gget cosmic --download_cosmic
+
+
# Python
+gget.cosmic(searchterm=None, download_cosmic=True)  
+
+

→ Descargue la base de datos sobre cáncer de COSMIC de la última versión de COSMIC.

+

Citar

+

Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.

    +
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/diamond.html b/es/diamond.html new file mode 100644 index 00000000..4a25f34d --- /dev/null +++ b/es/diamond.html @@ -0,0 +1,287 @@ + + + + + + gget diamond - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget diamond 💎

+

Alinee múltiples proteínas o secuencias de ADN traducidas usando DIAMOND (DIAMOND es similar a BLAST, pero este es un cálculo local).
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+query
+Secuencia(s) (str o lista) de aminoácidos, o una ruta a un archivo tipo FASTA.

+

Parámetro requerido
+-ref --reference
+Secuencias de aminoácidos de referencia (str o lista), o una ruta a un archivo tipo FASTA.

+

Parámetros optionales
+-db --diamond_db
+Ruta para guardar la base de datos DIAMOND creada a partir de reference (str).
+Por defecto: None -> El archivo de base de datos DIAMOND temporal se eliminará después de la alineación o se guardará en out si se proporciona out.

+

-s --sensitivity
+Sensibilidad de la alineación (str). Por defecto: "very-sensitive" (muy sensible).
+Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Número de hilos de procesamiento utilizados (int). Por defecto: 1.

+

-db --diamond_binary
+Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados (str), p. ej. "ruta/al/directorio". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan.

+

Banderas
+-u --uniprot
+Use esta bandera cuando sequence es un ID de Uniprot en lugar de una secuencia de aminoácidos.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
# !!! Asegúrese de enumerar primero el argumento posicional aquí para que no se agregue como secuencia de referencia
+gget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS
+
+
# Python
+gget.diamond(["GGETISAWESQME", "ELVISISALIVE", "LQVEFRANKLIN", "PACHTERLABRQCKS"], reference=["GGETISAWESQMEELVISISALIVELQVEFRANKLIN", "PACHTERLABRQCKS"])
+
+

→ Produce los resultados de la alineación en formato JSON (Terminal) o Dataframe/CSV:

+
+ + + +
query_accessionsubject_accessionidentity_percentagequery_seq_lengthsubject_seq_lengthlengthmismatchesgap_openingsquery_startquery_endsubject_startsubject_ende-valuebit_score
Seq0Seq0100133713001131132.82e-0930.8
Seq2Seq01001237120011226374.35e-0827.7
Seq3Seq1100151515001151152.01e-1136.2
+
+

Màs ejemplos

+

Citar

+

Si utiliza gget diamond en una publicación, favor de citar los siguientes artículos:

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/elm.html b/es/elm.html new file mode 100644 index 00000000..cc20539d --- /dev/null +++ b/es/elm.html @@ -0,0 +1,302 @@ + + + + + + gget elm - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget elm 🎭

+

Prediga localmente motivos lineales eucarióticos (ELMs) a partir de una secuencia de aminoácidos o UniProt Acc utilizando datos de la base de datos ELM.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Este módulo devuelve dos tipos de resultados (ver ejemplos).

+

Los datos de ELM se pueden descargar y distribuir para uso no comercial de acuerdo con el acuerdo de licencia de software de ELM.

+

Si utiliza gget elm en una publicación, favor de citar:

+ +

Antes de usar gget elm por primera vez, ejecute gget setup elm / gget.setup("elm") una vez (consulte también gget setup).

+

Parámetro posicional
+sequence
+Secuencia de aminoácidos o Uniprot Acc (str).
+Al proporcionar una Uniprot Acc, use la bandera --uniprot (Python: uniprot=True).

+

Parámetros optionales
+-s sensitivity
+Sensibilidad de la alineación DIAMOND (str). Por defecto: "very-sensitive" (muy sensible).
+Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t threads
+Número de hilos de procesamiento utilizados en la alineación de secuencias con DIAMOND (int). Por defecto: 1.

+

-bin diamond_binary
+Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados (str), p. ej. "ruta/al/directorio". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan.

+

Banderas
+-u --uniprot
+Use esta bandera cuando sequence es una Uniprot Acc en lugar de una secuencia de aminoácidos.

+

-e --expand
+Amplíe la información devuelta en el marco de datos de expresiones regulares para incluir los nombres de proteínas, los organismos y las referencias en las que se validó originalmente el motivo.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+

Encuentre ELM en una secuencia de aminoácidos:

+
gget setup elm          # Descarga/actualiza la base de datos ELM local
+gget elm -o gget_elm_results LIAQSIGQASFV
+
+
# Python
+gget.setup(“elm”)      # Descarga/actualiza la base de datos ELM local
+ortholog_df, regex_df = gget.elm("LIAQSIGQASFV")
+
+

Encuentre ELM que proporcionen a una UniProt Acc:

+
gget setup elm          # Descarga/actualiza la base de datos ELM local
+gget elm -o gget_elm_results --uniprot Q02410 -e
+
+
# Python
+gget.setup(“elm”)      # Descarga/actualiza la base de datos ELM local
+ortholog_df, regex_df = gget.elm("Q02410", uniprot=True, expand=True)
+
+

→ Produce dos resultados con información extensa sobre ELMs asociados con proteínas ortólogas y motivos encontrados en la secuencia de entrada directamente en función de sus expresiones regex:

+

ortholog_df:

+
+ + +
Ortholog_UniProt_AccProteinNameclass_accessionELMIdentifierFunctionalSiteNameDescriptionOrganism
Q02410APBA1_HUMANELME000357LIG_CaMK_CASK_1CASK CaMK domain binding ligand motifMotif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2.Homo sapiens
Q02410APBA1_HUMANELME000091LIG_PDZ_Class_2PDZ domain ligandsThe C-terminal class 2 PDZ-binding motif is classically represented by a pattern such asHomo sapiens
+
+

regex_df:

+
+ + + + + + +
Instance_accessionELMIdentifierFunctionalSiteNameELMTypeDescriptionInstances (Matched Sequence)Organism
ELME000321CLV_C14_Caspase3-7Caspase cleavage motifCLVCaspase-3 and Caspase-7 cleavage site.ERSDGMus musculus
ELME000102CLV_NRD_NRD_1NRD cleavage siteCLVN-Arg dibasic convertase (NRD/Nardilysin) cleavage site.RRARattus norvegicus
ELME000100CLV_PCSK_PC1ET2_1PCSK cleavage siteCLVNEC1/NEC2 cleavage site.KRDMus musculus
ELME000146CLV_PCSK_SKI1_1PCSK cleavage siteCLVSubtilisin/kexin isozyme-1 (SKI1) cleavage site.RLLTAHomo sapiens
ELME000231DEG_APCC_DBOX_1APCC-binding Destruction motifsDEGAn RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent mannerSRVKLNIVRSaccharomyces cerevisiae S288c
+
+

(Los motivos que aparecen en muchas especies diferentes pueden parecer repetidos, pero todas las filas deben ser únicas.)

+

Màs ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/enrichr.html b/es/enrichr.html new file mode 100644 index 00000000..4e326151 --- /dev/null +++ b/es/enrichr.html @@ -0,0 +1,401 @@ + + + + + + gget enrichr - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget enrichr 💰

+

Realice un análisis de enriquecimiento de una lista de genes utilizando Enrichr.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+genes
+Lista de nombres cortos (símbolos) de los genes de interés para realizar el análisis de enriquecimiento, p. PHF14 RBM3 MSL1 PHF21A.
+Alternativamente: use la bandera --ensembl para ingresar IDs tipo Ensembl, p. ENSG00000106443 ENSG00000102317 ENSG00000188895.

+

Otros parámetros requeridos
+-db --database
+Base de datos que será utilizada como referencia para el análisis de enriquecimiento.
+Admite cualquier base de datos enumerada aquí o uno de los siguientes accesos directos:
+'pathway'       (KEGG_2021_Human)
+'transcription'     (ChEA_2016)
+'ontology'      (GO_Biological_Process_2021)
+'diseases_drugs'   (GWAS_Catalog_2019)
+'celltypes'      (PanglaoDB_Augmented_2021)
+'kinase_interactions'  (KEA_2015)

+

Parámetros opcionales
+-bkg_l --background_list
+Lista de nombres cortos (símbolos) de genes de 'background' (de fondo/control), p. NSUN3 POLRMT NLRX1.
+Alternativamente: usa la bandera --ensembl_background para ingresar IDs tipo Ensembl.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

-ko --kegg_out
+Ruta al archivo png en el que se guardará la imágen de la vía de señalización celular KEGG, p. ej. ruta/al/directorio/KEGG.png. (Por defecto: None)

+

-kr --kegg_rank
+Rango de la ruta KEGG que se va a trazar. (Por defecto: 1)

+

figsize
+Solo para Python. (ancho, alto) de la visualización en pulgadas. (Por defecto: (10,10))

+

ax
+Solo para Python. Ingresa un objeto de ejes matplotlib para personalizar la visualización.(Por defecto: None)

+

Banderas
+-e --ensembl
+Usa esta bandera si genes se ingresa como una lista de IDs tipo Ensembl.

+

-e_b --ensembl_background
+Usa esta bandera si background_list se ingresa como una lista de IDs tipo Ensembl.

+

-bkg --background
+Use un conjunto de 20,625 genes 'background' +listados aquí.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True produce los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.

+

plot
+Solo para Python. plot=True provée la visualización de los primeros 15 resultados (por defecto: False).

+

Ejemplo

+
gget enrichr -db ontology ACE2 AGT AGTR1
+
+
# Python
+gget.enrichr(["ACE2", "AGT", "AGTR1"], database="ontology", plot=True)
+
+

→ Produce vías/funciones celulares relacionadas con los genes ACE2, AGT y AGTR1 de la base de datos GO Biological Process 2021. En Python, plot=True provee la visualización de resultados:

+

alt text

+



+

Use gget enrichr con una lista de genes 'background':

+
# Aquí, primero ingresamos los genes de interés (parámetro posicional 'genes'), para que no se agreguen a la lista de genes 'background' detrás del parámetro '-bkgr_l'
+gget enrichr \
+	PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \
+	-db ChEA_2022 \
+	-bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2
+
+
# Python
+gget.enrichr(
+	genes = [
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", "P2RX7",
+		"LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", "ANAPC16", "TMCC1",
+		"CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", "PLBD2", "LARP7", "TECPR2", 
+		"ZNF302", "CUX1", "MOB2", "CYTH2", "SEC22C", "EIF4E3", "ROBO2",
+		"ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", "ATP5F1"
+	], 
+	database = "ChEA_2022",
+	background_list = [
+		"NSUN3","POLRMT","NLRX1","SFXN5","ZC3H12C","SLC25A39","ARSG",
+		"DEFB29","PCMTD2","ACAA1A","LRRC1","2810432D09RIK","SEPHS2",
+		"SAC3D1","TMLHE","LOC623451","TSR2","PLEKHA7","GYS2","ARHGEF12",
+		"HIBCH","LYRM2","ZBTB44","ENTPD5","RAB11FIP2","LIPT1",
+		"INTU","ANXA13","KLF12","SAT2","GAL3ST2","VAMP8","FKBPL",
+		"AQP11","TRAP1","PMPCB","TM7SF3","RBM39","BRI3","KDR","ZFP748",
+		"NAP1L1","DHRS1","LRRC56","WDR20A","STXBP2","KLF1","UFC1",
+		"CCDC16","9230114K14RIK","RWDD3","2610528K11RIK","ACO1",
+		"CABLES1", "LOC100047214","YARS2","LYPLA1","KALRN","GYK",
+		"ZFP787","ZFP655","RABEPK","ZFP650","4732466D17RIK","EXOSC4",
+		"WDR42A","GPHN","2610528J11RIK","1110003E01RIK","MDH1","1200014M14RIK",
+		"AW209491","MUT","1700123L14RIK","2610036D13RIK",
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", 
+		"P2RX7", "LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", 
+		"ANAPC16", "TMCC1","CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", 
+		"PLBD2", "LARP7", "TECPR2", "ZNF302", "CUX1", "MOB2", "CYTH2", 
+		"SEC22C", "EIF4E3", "ROBO2", "ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", 
+		"ATP5F1""COX15","TMEM30A","NSMCE4A","TM2D2","RHBDD3","ATXN2","NFS1",
+		"3110001I20RIK","BC038156","C330002I19RIK","ZFYVE20","POLI","TOMM70A",
+		"LOC100047782","2410012H22RIK","RILP","A230062G08RIK",
+		"PTTG1IP","RAB1","AFAP1L1", "LYRM5","2310026E23RIK",
+		"SLC7A6OS","MAT2B","4932438A13RIK","LRRC8A","SMO","NUPL2"
+	],
+	plot=True
+)
+
+

→ Provée factores de transcripción relacionados a los genes de interés y controlados con la lista de genes background de la base de datos ChEA 2022. En Python, plot=True permite la visualización de resultados:

+

alt text

+



+

Genere una imagen de la vía de señalización de células KEGG con los genes del análisis de enriquecimiento resaltados:
+Esta función está disponible gracias a un PR de Noriaki Sato.

+
gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1
+
+
# Python
+gget.enrichr(["ZBP1", "IRF3", "RIPK1"], database="pathway", kegg_out="kegg.png", kegg_rank=1)
+
+

→ Además de los resultados estándar gget enrichr, el argumento kegg_out guarda una imagen con los genes del análisis de enriquecimiento resaltados guardado como kegg.png:

+

kegg

+



+

El siguiente ejemplo fue enviado por Dylan Lawless a través de un PR (con ajustes de Laura Luebbert):
+Use gget enrichr en R y cree unq visualización similar usando ggplot.
+TENGA EN CUENTA el cambio de ejes en comparación con la visualización en Python.

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+# Perform enrichment analysis on a list of genes
+df <- gget$enrichr(list("ACE2", "AGT", "AGTR1"), database = "ontology")
+
+# Count number of overlapping genes
+df$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric()
+
+# Only keep the top 15 results
+df <- df[1:15, ]
+
+# Plot
+library(ggplot2)
+
+df |>
+	ggplot() +
+	geom_bar(aes(
+		x = -log10(adj_p_val),
+		y = reorder(path_name, -adj_p_val)
+	),
+	stat = "identity",
+  	fill = "lightgrey",
+  	width = 0.5,
+	color = "black") +
+	geom_text(
+		aes(
+			y = path_name,
+			x = (-log10(adj_p_val)),
+			label = overlapping_genes_count
+		),
+		nudge_x = 0.75,
+		show.legend = NA,
+		color = "red"
+	) +
+  	geom_text(
+		aes(
+			y = Inf,
+			x = Inf,
+      			hjust = 1,
+      			vjust = 1,
+			label = "# of overlapping genes"
+		),
+		show.legend = NA,
+		color = "red"
+	) +
+	geom_vline(linetype = "dotted", linewidth = 1, xintercept = -log10(0.05)) +
+	ylab("Pathway name") +
+	xlab("-log10(adjusted P value)")
+
+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/gpt.html b/es/gpt.html new file mode 100644 index 00000000..d0afb857 --- /dev/null +++ b/es/gpt.html @@ -0,0 +1,277 @@ + + + + + + gget gpt - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget gpt 💬

+

Genera texto en lenguaje natural basado en mensaje de entrada. gget gpt use la API 'openai.ChatCompletion.create' de OpenAI. +Este módulo, incluido su código, documentación y pruebas unitarias, fue escrito en parte por Chat-GTP3 de OpenAI.

+

TENGA EN CUENTA:
+Las llamadas a la API de OpenAI solo son 'gratuitas' durante los primeros tres meses después de generar su cuenta de OpenAI (OpenAI proporciona un crédito de $5 que vence).
+Puede definir un límite de facturación mensual estricto (por ejemplo, $1) aquí.
+Vea sus precios y preguntas frecuentes aquí.
+Obtenga su clave API de OpenAI aquí.

+

Regresa: El texto generado (str).

+

Antes de usar gget gpt por primera vez, corre gget setup gpt / gget.setup("gpt") (ver también gget setup).

+

Parámetros posicionales
+prompt
+Mensaje de entrada basado en el cual generar texto (str).

+

api_key
+Su clave API de OpenAI (str) (obtenga su clave API).

+

Parámetros optionales
+-m --model
+El nombre del algoritmo GPT que se usará para generar el texto (str). Por defecto: "gpt-3.5-turbo".
+See https://platform.openai.com/docs/models/gpt-4 for more information on the available models.

+

-temp --temperature
+Valor entre 0 y 2 que controla el nivel de aleatoriedad y creatividad en el texto generado (float).
+Los valores más altos resultan en un texto más creativo y variado. Por defecto: 1.

+

-tp --top_p
+Controla la diversidad del texto generado como alternativa al muestreo con --temperature (float).
+Los valores más altos resultan en un texto más diverso e inesperado. Por defecto: 1.
+Tenga en cuenta que OpenAI recomienda modificar --top_p o el parámetro --temperature, pero no ambas.

+

-s --stop
+Una secuencia de tokens para marcar el final del texto generado (str). Por defecto: None.

+

-mt --max_tokens
+Controla la longitud máxima del texto generado, en tokens (int). Por defecto: 200.

+

-pp --presence_penalty
+Número entre -2.0 y 2.0. Los valores más altos aumentan la probabilidad de que el modelo hable sobre temas nuevos (float). Por defecto: 0.

+

-fp --frequency_penalty
+Número entre -2.0 y 2.0. Los valores más altos reducen la probabilidad de que el modelo repita la misma línea palabra por palabra (float). Por defecto: 0.

+

-lb --logit_bias
+Un diccionario que especifica un sesgo hacia ciertos tokens en el texto generado (dict). Por defecto: None.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.txt. Por defecto: salida estándar (STDOUT).

+

Por ejemplo

+
gget gpt "Cómo estás hoy GPT?" su_clave_api
+
+
# Python
+print(gget.gpt("Cómo estás hoy GPT?", "su_clave_api"))
+
+
+Screen Shot 2023-03-18 at 3 42 32 PM + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/info.html b/es/info.html new file mode 100644 index 00000000..060ff694 --- /dev/null +++ b/es/info.html @@ -0,0 +1,272 @@ + + + + + + gget info - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget info 💡

+

Obtenga información detallada sobre genes y transcripciones de Ensembl, UniProt y NCBI utilizando sus IDs del tipo Ensembl.
+Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+ens_ids
+Uno o más ID del tipo Ensembl.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-n --ncbi
+DESACTIVA los resultados de NCBI.
+Para Python: ncbi=False evita la incluida de datos de NCBI (por defecto: True).

+

-u --uniprot
+DESACTIVA los resultados de UniProt.
+Para Python: uniprot=False evita la incluida de datos de UniProt (por defecto: True).

+

-pdb --pdb
+INCLUYE PDB IDs en los resultados (podría aumentar el tiempo de ejecución).
+Para Python: pdb=True incluye IDs de PDB en los resultados (por defecto: False).

+

-csv --csv
+Solo para la Terminal. Regresa los resultados en formato CSV.
+Para Python, usa json=True para regresar los resultados en formato JSON.

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget info ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.info(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Regresa información detallada sobre cada ID de Ensembl ingresada:

+
+ + +
uniprot_idncbi_gene_idprimary_gene_namesynonymsprotein_namesensembl_descriptionuniprot_descriptionncbi_descriptionbiotypecanonical_transcript...
ENSG00000034713P6052011345GABARAPL2[ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2]Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)...GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ...Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein...protein_codingENST00000037243.7...
. . .. . .. . .. . .. . .. . .. . .. . .. . .. . .. . ....
+
+

More examples

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/installation.html b/es/installation.html new file mode 100644 index 00000000..4b044f49 --- /dev/null +++ b/es/installation.html @@ -0,0 +1,239 @@ + + + + + + Instalación - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image

+

Instalación

+
pip install --upgrade gget
+
+

Alternativa:

+
conda install -c bioconda gget
+
+

Para uso en Jupyter Lab / Google Colab:

+
import gget
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/introduction.html b/es/introduction.html new file mode 100644 index 00000000..6efd48ce --- /dev/null +++ b/es/introduction.html @@ -0,0 +1,287 @@ + + + + + + Introdución - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image +Downloads +Conda +license +status +status +Star on GitHub

+

+

¡Bienvenidos!

+

gget es un programa gratuito de código fuente abierta de Terminal y Python que permite la consulta eficiente de bases de datos genómicas.
+
+gget consiste en un conjunto de módulos separados pero interoperables, cada uno diseñado para facilitar un tipo de consulta de base de datos en una sola línea de código.
+
+Las bases de datos consultadas por gget se actualizan continuamente, lo que a veces cambia su estructura. Los módulos gget se prueban automáticamente cada dos semanas y se actualizan para que coincidan con las nuevas estructuras de la base de datos cuando es necesario. Si encuentra algún problema, actualice a la última versión de gget usando pip install --upgrade gget. Si el problema persiste, informa el problema.
+
+
 Solicitar una nueva función 
+

+

Módulos gget

+

Estos son los módulos principales de gget. Haga clic en cualquier módulo para acceder a la documentación detallada.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gget alphafold
Predecir la estructura 3D de una proteína a partir de una secuencia de aminoácidos.
gget archs4
¿Cuál es la expresión de mi gen en el tejido X?
gget bgee
Encontrar todos los ortólogos de un gen.
gget blast
Realizar un BLAST de una secuencia de nucleótidos o aminoácidos.
gget blat
Encontrar la ubicación genómica de una secuencia de nucleótidos o aminoácidos.
gget cbio
Explorar la expresión de un gen en los cánceres especificados.
gget cellxgene
Obtener matrices de conteo de ARN de células individuales listas para usar para ciertos tejidos/enfermedades/etc.
gget cosmic
Buscar genes, mutaciones y otros factores asociados con ciertos cánceres.
gget diamond
Alinear secuencias de aminoácidos a una referencia.
gget elm
Encontrar dominios y funciones de interacción de proteínas en una secuencia de aminoácidos.
gget enrichr
Verificar si una lista de genes está asociada con un tipo celular específico/ vía/ enfermedad/ etc.
gget info
Recuperar toda la información asociada con un ID de Ensembl.
gget muscle
Alinear múltiples secuencias de nucleótidos o aminoácidos entre sí.
gget mutate
Mutar secuencias de nucleótidos según mutaciones específicas.
gget opentargets
Explorar qué enfermedades y medicamentos están asociados con un gen.
gget pdb
Recuperar datos de la Base de Datos de Proteínas (PDB) según un ID de PDB.
gget ref
Obtener genomas de referencia de Ensembl.
gget search
Encontrar IDs de Ensembl asociados con la palabra de búsqueda especificada.
gget seq
Recuperar la secuencia de nucleótidos o aminoácidos de un gen.
+
+

Si usa gget en una publicación, por favor cite*:

+
Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836
+
+

Lea el artículo aquí: https://doi.org/10.1093/bioinformatics/btac836

+

Gracias a Victor Garcia-Ruiz y Anna Karen Orta por su ayuda con la traduccion del sitio web.

+
+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/muscle.html b/es/muscle.html new file mode 100644 index 00000000..cc066964 --- /dev/null +++ b/es/muscle.html @@ -0,0 +1,273 @@ + + + + + + gget muscle - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget muscle 🦾

+

Alinea múltiples secuencias de nucleótidos o aminoácidos usando el algoritmo Muscle5.
+Regresa: Salida estándar (STDOUT) en formato ClustalW o archivo de tipo 'aligned FASTA' (.afa).

+

Parámetro posicional
+fasta
+Lista de secuencias o ruta al archivo FASTA o .txt que contiene las secuencias de nucleótidos o aminoácidos que se van a alinear.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.afa. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-s5 --super5
+Alinea las secuencies usando el algoritmo Super5 en lugar del algoritmo Parallel Perturbed Probcons (PPP) para disminuir el tiempo y la memoria usada durante la corrida.
+Use para ingresos grandes (unos cientos secuencias).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+
gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+
# Python
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+
+
gget muscle fasta.fa
+
+
# Python
+gget.muscle("fasta.fa")
+
+

→ Regresa las secuencias alineadas con coloración ClustalW. (Para devolver un archivo FASTA alineado (.afa), use el argumento --out (o save=True en Python).) En este ejemplo, el archivo 'fasta.fa' incluye varias secuencias para alineación (por ejemplo, isoformas devueltas desde gget seq).

+

alt text

+

También puede ver archivos FASTA alineados devueltos por gget.muscle usando programas como alv:

+
# Python
+!pip install biopython
+!pip install alv
+from Bio import AlignIO
+import alv
+
+gget.muscle("fasta.fa", out="fasta_aligned.afa")
+msa = AlignIO.read("fasta_aligned.afa", "fasta")
+alv.view(msa)
+
+

More examples

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/mutate.html b/es/mutate.html new file mode 100644 index 00000000..2851212c --- /dev/null +++ b/es/mutate.html @@ -0,0 +1,310 @@ + + + + + + gget mutate - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget mutate 🧟

+

Recibe secuencias de nucleótidos y mutaciones (en anotación de mutación estándar) y devuelve versiones mutadas de las secuencias según las mutaciones proporcionadas.
+Formato de devolución: Guarda las secuencias mutadas en formato FASTA (o devuelve una lista que contiene las secuencias mutadas si out=None).

+

Este módulo fue coescrito por Joseph Rich.

+

Parámetro posicional
+sequences
+Ruta al archivo FASTA que contiene las secuencias a mutar, por ejemplo, 'path/to/seqs.fa'.
+Los identificadores de secuencia que siguen al carácter '>' deben corresponder a los identificadores en la columna seq_ID de mutations.
+NOTA: Solo se utilizará la cadena que sigue al '>' hasta el primer espacio o punto como identificador de secuencia. -> Se ignorarán los números de versión de los IDs de Ensembl.

+

Ejemplo de formato del archivo FASTA:

+
>seq1 (o ENSG00000106443)  
+ACTGCGATAGACT  
+>seq2  
+AGATCGCTAG
+
+

Alternativamente: Proporcione secuencia(s) como una cadena o lista, por ejemplo, 'AGCTAGCT'.

+

Otros parámetros requeridos
+-m --mutations
+Ruta al archivo csv o tsv (por ejemplo, 'path/to/mutations.csv') o marco de datos (objeto DataFrame) que contiene información sobre las mutaciones en el siguiente formato (la columna 'notas' no es necesaria):

+
+ + + + + +
mutationmut_IDseq_IDnotas
c.2C>Tmut1seq1-> Aplicar la mutación 1 a la secuencia 1
c.9_13invmut2seq2-> Aplicar la mutación 2 a la secuencia 2
c.9_13invmut2seq4-> Aplicar la mutación 2 a la secuencia 4
c.9_13delinsAATmut3seq4-> Aplicar la mutación 3 a la secuencia 4
.........
+
+

'mutation' = Columna que contiene las mutaciones a realizar, escritas en anotación de mutación estándar
+'mut_ID' = Columna que contiene el identificador de cada mutación
+'seq_ID' = Columna que contiene los identificadores de las secuencias a mutar (deben corresponder a la cadena que sigue al carácter '>' en el archivo FASTA de 'sequences'; NO incluir espacios ni puntos)

+

Alternativamente: Mutación(es) de entrada como una cadena o lista, por ejemplo, 'c.2C>T'.
+Si se proporciona una lista, el número de mutaciones debe ser igual al número de secuencias de entrada.
+Para uso desde el terminal (bash): Encierre las anotaciones de mutación individuales entre comillas para evitar errores.

+

Parámetros opcionales
+-k --k
+Longitud de las secuencias que flanquean la mutación. Por defecto: 30.
+Si k > longitud total de la secuencia, se mantendrá toda la secuencia.

+

-mc --mut_column
+Nombre de la columna que contiene las mutaciones a realizar en mutations. Por defecto: 'mutation'.

+

-mic --mut_id_column
+Nombre de la columna que contiene los IDs de cada mutación en mutations. Por defecto: 'mut_ID'.

+

-sic --seq_id_column
+Nombre de la columna que contiene los IDs de las secuencias a mutar en mutations. Por defecto: 'seq_ID'.

+

-o --out
+Ruta al archivo FASTA de salida que contiene las secuencias mutadas, por ejemplo, 'path/to/output_fasta.fa'.
+Por defecto: None -> devuelve una lista de las secuencias mutadas a la salida estándar.
+Los identificadores (después del '>') de las secuencias mutadas en el FASTA de salida serán '>[seq_ID]_[mut_ID]'.

+

Flags
+-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplos

+
gget mutate ATCGCTAAGCT -m 'c.4G>T'
+
+
# Python
+gget.mutate("ATCGCTAAGCT", "c.4G>T")
+
+

→ Devuelve ATCTCTAAGCT.

+



+

Lista de secuencias con una mutación para cada secuencia proporcionada en una lista:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], ["c.4G>T", "c.1_3inv"], out="mut_fasta.fa")
+
+

→ Guarda el archivo 'mut_fasta.fa' que contiene:

+
>seq1_mut1  
+ATCTCTAAGCT  
+>seq2_mut2  
+GATCTA
+
+



+

Una mutación aplicada a varias secuencias con k ajustado:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], "c.1_3inv", k=3)
+
+

→ Devuelve ['CTAGCT', 'GATCTA'].

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/pdb.html b/es/pdb.html new file mode 100644 index 00000000..e00a4da6 --- /dev/null +++ b/es/pdb.html @@ -0,0 +1,298 @@ + + + + + + gget pdb - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget pdb 🔮

+

Obtenga la estructura o los metadatos de una proteína usando data de RCSB Protein Data Bank (PDB).
+Regresa: El archivo 'pdb' se regresa en formato PDB. Todos los demás datos se regresan en formato JSON.

+

Parámetro posicional
+pdb_id
+ID del tipo PDB, p. ej. '7S7U'.

+

Parámetros optionales
+-r --resource
+Define el tipo de información a regresar. Uno de los siguientes:
+'pdb': Regresa la estructura de la proteína en formato PDB (regresa por defecto).
+'entry': Regresa información sobre las estructuras PDB en el nivel superior de la organización de datos PDB jerárquicos.
+'pubmed': Regresa anotaciones de PubMed (datos integrados de PubMed) para la cita principal de un ID PDB.
+'assembly': Regresa información sobre estructuras PDB en el nivel de estructura cuaternaria.
+'branched_entity': Regresa la descripción de la entidad ramificada (defina el ID de la entidad como identifier).
+'nonpolymer_entity': Regresa datos de entidades no poliméricas (defina el ID de la entidad como identifier).
+'polymer_entity': Regresa datos de entidades poliméricas (defina el ID de la entidad como identifier).
+'uniprot': Regresa anotaciones UniProt para una entidad macromolecular (defina el ID de la entidad como identifier).
+'branched_entity_instance': Regresa la descripción de instancia de entidad ramificada (defina el ID de cadena como identifier).
+'polymer_entity_instance': Regresa datos de instancia de entidad polimérica (también conocida como cadena) (defina el ID de cadena como identifier).
+'nonpolymer_entity_instance': Regresa datos de instancia de entidad no polimérica (defina el ID de cadena como identifier).

+

-i --identifier
+Este parámetro se puede utilizar para definir el ID de ensamblaje, entidad o cadena (po defecto: None). Los IDs de ensamblaje/entidad son números (p. ej., 1) y los IDs de cadena son letras (p. ej., 'A').

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/7S7U.pdb (o 7S7U_entry.json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Por ejemplo

+
gget pdb 7S7U -o 7S7U.pdb
+
+
# Python
+gget.pdb("7S7U", save=True)
+
+

→ Guarda la estructura de 7S7U en formato PDB como '7S7U.pdb' en el directorio de trabajo actual.

+

Encuentre estructuras cristalinas de PDB para un análisis comparativo de la estructura de proteínas:

+
# Encuentre IDs de PDB asociados con un ID de Ensembl
+gget info ENSG00000130234
+
+# Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,
+# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB:
+
+# Obtenga la secuencia de aminoácidos
+gget seq --translate ENSG00000130234 -o gget_seq_results.fa
+
+# BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB
+gget blast --database pdbaa gget_seq_results.fa
+
+# Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo
+gget pdb 7DQA -o 7DQA.pdb
+gget pdb 7CT5 -o 7CT5.pdb
+
+
# Encuentre IDs de PDB asociados con un ID de Ensembl
+gget.info("ENSG00000130234")
+
+# Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,
+# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB:
+
+# Obtenga la secuencia de aminoácidos
+gget.seq("ENSG00000130234", translate=True, save=True)
+
+# BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB
+gget.blast("gget_seq_results.fa", database="pdbaa")
+
+# Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo
+gget.pdb("7DQA", save=True)
+gget.pdb("7CT5", save=True)
+
+

→ Este caso de uso ejemplifica cómo encontrar archivos PDB para un análisis comparativo de la estructura de las proteínas asociado con IDs de Ensembl o secuencias de aminoácidos. Los archivos PDB obtenidos también se pueden comparar con las estructuras predichas generadas por gget alphafold. Los archivos PDB se pueden ver de forma interactiva en 3D aquí, o usando programas como PyMOL o Blender. Múltiple archivos PDB se pueden visualizar para comparación aquí.

+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/quick_start_guide.html b/es/quick_start_guide.html new file mode 100644 index 00000000..d850b11b --- /dev/null +++ b/es/quick_start_guide.html @@ -0,0 +1,320 @@ + + + + + + Guía de inicio rápido - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

🪄 Guía de inicio rápido

+

Terminal:

+
# Obtenga todos los FTP de anotaciones y referencias de Homo sapiens de la última versión de Ensembl
+$ gget ref homo_sapiens
+
+# Obtenga IDs de Ensembl de genes humanos con "ace2" o "angiotensin converting enzyme 2" en su nombre/descripción
+$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2'
+
+# Busque el gen ENSG00000130234 (ACE2) y su transcripción ENST00000252519
+$ gget info ENSG00000130234 ENST00000252519
+
+# Obtenga la secuencia de aminoácidos de la transcripción canónica del gen ENSG00000130234
+$ gget seq --translate ENSG00000130234
+
+# Rápidamente encuentra la ubicación genómica de la secuencia de aminoácidos
+$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# BLAST la secuencia de aminoácidos
+$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Alinee múltiples secuencias de nucleótidos o aminoácidos entre sí (también acepta la ruta al archivo FASTA)  
+$ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Alinee una o más secuencias de aminoácidos con una referencia (que contiene una o más secuencias) (BLAST local) (también acepta rutas a archivos FASTA)  
+$ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Alinea secuencias de nucleótidos o aminoácidos en un archivo FASTA
+$ gget muscle path/to/file.fa
+
+# Use Enrichr para un análisis de ontología de una lista de genes
+$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P
+
+# Obtene la expresión en tejido humano del gen ACE2
+$ gget archs4 -w tissue ACE2
+
+# Obtenga la estructura de la proteína (en formato PDB) de ACE2 (ID de PDB devuelta por gget info)
+$ gget pdb 1R42 -o 1R42.pdb
+
+# Encuentre motivos lineales eucarióticos (ELM) en una secuencia de aminoácidos
+$ gget setup elm        # solo debe ejecutarse una vez
+$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Obtene una matriz de recuento de scRNAseq (formato AnnData) basada en genes, tejidos y tipos de células especificados (especie predeterminada: humano)
+$ gget setup cellxgene  # solo debe ejecutarse una vez
+$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad
+
+# Predice la estructura proteica de GFP a partir de su secuencia de aminoácidos
+$ gget setup alphafold  # solo debe ejecutarse una vez
+$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK
+
+

Python (Jupyter Lab / Google Colab):

+
import gget
+gget.ref("homo_sapiens")
+gget.search(["ace2", "angiotensin converting enzyme 2"], "homo_sapiens")
+gget.info(["ENSG00000130234", "ENST00000252519"])
+gget.seq("ENSG00000130234", translate=True)
+gget.blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+gget.diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget.enrichr(["ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"], database="ontology", plot=True)
+gget.archs4("ACE2", which="tissue")
+gget.pdb("1R42", save=True)
+
+gget.setup("elm")         # solo debe ejecutarse una vez
+ortho_df, regex_df = gget.elm("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+
+gget.setup("cellxgene")   # solo debe ejecutarse una vez
+gget.cellxgene(gene = ["ACE2", "SLC5A1"], tissue = "lung", cell_type = "mucus secreting cell")
+
+gget.setup("alphafold")   # solo debe ejecutarse una vez
+gget.alphafold("MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK")
+
+

Use a gget con R usando reticulate:

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+gget$ref("homo_sapiens")
+gget$search(list("ace2", "angiotensin converting enzyme 2"), "homo_sapiens")
+gget$info(list("ENSG00000130234", "ENST00000252519"))
+gget$seq("ENSG00000130234", translate=TRUE)
+gget$blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$muscle(list("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"), out="out.afa")
+gget$diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget$enrichr(list("ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"), database="ontology")
+gget$archs4("ACE2", which="tissue")
+gget$pdb("1R42", save=TRUE)
+
+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/ref.html b/es/ref.html new file mode 100644 index 00000000..e2bec90e --- /dev/null +++ b/es/ref.html @@ -0,0 +1,306 @@ + + + + + + gget ref - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget ref 📖

+

Obtenga enlaces FTP y sus respectivos metadatos (o use la bandera ftp para regresar solo los enlaces) para referenciar genomas y anotaciones de Ensembl.
+Regresa: Resultados en formato JSON.

+

Parámetro posicional
+species
+La especie por la cual que se buscará los FTP en el formato género_especies, p. ej. homo_sapiens.
+Nota: No se requiere cuando se llama a la bandera --list_species.
+Accesos directos: 'human', 'mouse', 'human_grch37' (accede al ensamblaje del genoma GRCh37)

+

Parámetros optionales
+-w --which
+Define qué resultados devolver. Por defecto: 'all' -> Regresa todos los resultados disponibles.
+Las entradas posibles son uno solo o una combinación de las siguientes (como lista separada por comas):
+'gtf' - Regresa la anotación (GTF).
+'cdna' - Regresa el transcriptoma (cDNA).
+'dna' - Regresa el genoma (DNA).
+'cds' - Regresa las secuencias codificantes correspondientes a los genes Ensembl. (No contiene UTR ni secuencia intrónica).
+'cdrna' - Regresa secuencias de transcripción correspondientes a genes de ARN no codificantes (ncRNA).
+'pep' - Regresa las traducciones de proteínas de los genes Ensembl.

+

-r --release
+Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Default: latest Ensembl release.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.json. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-l --list_species
+Enumera todas las especies disponibles. (Para Python: combina con species=None.)

+

-ftp --ftp
+Regresa solo los enlaces FTP solicitados.

+

-d --download
+Solo para Terminal. Descarga los FTP solicitados al directorio actual (requiere curl para ser instalado).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+

Use gget ref en combinación con kallisto | bustools para construir un índice de referencia:

+
kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens)
+
+

→ kb ref crea un índice de referencia utilizando los últimos archivos de ADN y GTF de especies Homo sapiens que le ha pasado gget ref.

+



+

Enumere todos los genomas disponibles de la versión 103 de Ensembl:

+
gget ref --list_species -r 103
+
+
# Python
+gget.ref(species=None, list_species=True, release=103)
+
+

→ Regresa una lista con todos los genomas disponibles (gget ref verifica si GTF y FASTA están disponibles) de la versión 103 de Ensembl.
+(Si no se especifica ninguna versión, gget ref siempre devolverá información de la última versión de Ensembl).

+



+

Obtenga la referencia del genoma para una especie específica:

+
gget ref -w gtf,dna homo_sapiens
+
+
# Python
+gget.ref("homo_sapiens", which=["gtf", "dna"])
+
+

→ Regresa un JSON con los últimos FTP humanos GTF y FASTA, y sus respectivos metadatos, en el formato:

+
{
+    "homo_sapiens": {
+        "annotation_gtf": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz",
+            "ensembl_release": 106,
+            "release_date": "28-Feb-2022",
+            "release_time": "23:27",
+            "bytes": "51379459"
+        },
+        "genome_dna": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz",
+            "ensembl_release": 106,
+            "release_date": "21-Feb-2022",
+            "release_time": "09:35",
+            "bytes": "881211416"
+        }
+    }
+}
+
+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/search.html b/es/search.html new file mode 100644 index 00000000..b69ecaa9 --- /dev/null +++ b/es/search.html @@ -0,0 +1,286 @@ + + + + + + gget search - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget search 🔎

+

Obtenga genes y transcripciones de Ensembl usando términos de búsqueda de forma libre.
+Los resultados se comparan según las secciones "nombre del gen" y "descripción" en la base de datos de Ensembl. gget versión >= 0.27.9 también incluye resultados que coinciden con la sección "sinónimo" de Ensembl.
+Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+searchwords
+Una o más palabras de búsqueda de forma libre, p. ej. gaba nmda. (Nota: la búsqueda no distingue entre mayúsculas y minúsculas).

+

Otros parámetros requeridos
+-s --species
+Especies o base de datos a buscar.
+Una especie se puede pasar en el formato 'género_especie', p. ej. 'homo_sapiens' o 'arabidopsis_thaliana'.
+Para pasar una base de datos específica, pase el nombre de la base de datos CORE, p. ej. 'mus_musculus_dba2j_core_105_1'.

+

Todas las bases de datos disponibles para cada versión de Ensembl se pueden encontrar aquí:
+Vertebrados: http://ftp.ensembl.org/pub/current/mysql/
+Invertebrados: http://ftp.ensemblgenomes.org/pub/current/ + selecciona reino animal + selecciona mysql/

+

Accesos directos: 'human', 'mouse'

+

Parámetros optionales
+-r --release
+Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Por defecto: None -> se usa la última versión de Ensembl.

+

Nota: No se aplica a las especies invertebrados (en su lugar, puede pasar una base de datos de una especies específica (incluyen un número de versión) al argumento species). Para especies de invertebrados, Ensembl solo almacena bases de datos de 10 versiones anteriores a la versión actual.

+

Este argumento se sobrescribe si se pasa una base de datos específica (que incluye un número de publicación) al argumento species.

+

-t --id_type
+'gene' (esto se use por defecto) o 'transcript'
+Regesa genes o transcripciones, respectivamente.

+

-ao --andor
+'or' (esto se use por defecto) o 'and'
+'or' ('o'): Regresa todos los genes que INCLUYEN AL MENOS UNA de las palabras de búsqueda en su nombre/descripción.
+'and' ('y'): Regresa solo los genes que INCLUYEN TODAS las palabras de búsqueda en su nombre/descripción.

+

-l --limit
+Limita el número de resultados de búsqueda, p. ej. 10. Por defecto: None.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-csv --csv
+Solo para la Terminal. Regresa los resultados en formato CSV.
+Para Python, usa json=True para regresar los resultados en formato JSON.

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget search -s human gaba gamma-aminobutyric
+
+
# Python
+gget.search(["gaba", "gamma-aminobutyric"], "homo_sapiens")
+
+

→ Regresa todos los genes que contienen al menos una de las palabras de búsqueda en su nombre o descripción de Ensembl/referencia externa:

+
+ + +
ensembl_idgene_nameensembl_descriptionext_ref_descriptionbiotypeurl
ENSG00000034713GABARAPL2GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]GABA type A receptor associated protein like 2protein_codinghttps://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713
. . .. . .. . .. . .. . .. . .
+
+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/seq.html b/es/seq.html new file mode 100644 index 00000000..e33786ef --- /dev/null +++ b/es/seq.html @@ -0,0 +1,267 @@ + + + + + + gget seq - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget seq 🧬

+

Obtenga la(s) secuencia(s) nucleótidos o aminoácidos de un gen (y todas sus isoformas) con su ID de Ensembl.
+Regresa: Archivo de tipo FASTA.

+

Parámetro posicional
+ens_ids
+One or more Ensembl IDs.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.fa. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-t --translate
+Regresa secuencias de aminoácidos (en lugar de nucleótidos).
+Las secuencias de nucleótidos se obtienen de Ensembl.
+Las secuencias de aminoácidos se obtienen de UniProt.

+

-iso --isoforms
+Regresa las secuencias de todas las transcripciones conocidas.
+(Solo para IDs de genes).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+
gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.seq(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Regresa las secuencias de nucleótidos de ENSG00000034713, ENSG00000104853, y ENSG00000170296 en formato FASTA.

+



+
gget seq -t -iso ENSG00000034713
+
+
# Python
+gget.seq("ENSG00000034713", translate=True, isoforms=True)
+
+

→ Regresa las secuencias de aminoácidos de todas las transcripciones conocidas de ENSG00000034713 en formato FASTA.

+

Más ejemplos

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/setup.html b/es/setup.html new file mode 100644 index 00000000..1ba64059 --- /dev/null +++ b/es/setup.html @@ -0,0 +1,243 @@ + + + + + + gget setup - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget setup 🔧

+

Función para instalar/descargar dependencias de terceros para un módulo de gget.

+

Parámetro posicional
+module
+Módulo gget para el que se deben instalar las dependencias.

+

Por ejemplo

+
gget setup alphafold
+
+
# Python
+gget.setup("alphafold")
+
+

→ Instala todas las dependencias de terceros (modificadas) y descarga los parámetros del algoritmo (~4 GB) necesarios para ejecutar gget alphafold.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/es/updates.html b/es/updates.html new file mode 100644 index 00000000..b6dd8744 --- /dev/null +++ b/es/updates.html @@ -0,0 +1,386 @@ + + + + + + ¡Lo más reciente! - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

✨ ¡Lo más reciente!

+

Versión ≥ 0.28.6 (2 de junio de 2024):

+
    +
  • Nuevo módulo: gget mutate
  • +
  • gget cosmic: Ahora puedes descargar bases de datos completas de COSMIC utilizando el argumento download_cosmic
  • +
  • gget ref: Ahora puede obtener la ensambladura del genoma GRCh27 usando species='human_grch37'
  • +
  • gget search: Ajusta el acceso a los datos humanos a la estructura de la versión 112 de Ensembl (corrige issue 129)
  • +
+

Version ≥ 0.28.5 (May 29, 2024):

+
    +
  • Retirado debido a un error con 'logging' en gget.setup("alphafold") + mutaciones de inversión en gget mutate solo invierten la cadena en lugar de también calcular la hebra complementaria
  • +
+

Versión ≥ 0.28.4 (31 de enero de 2024):

+
    +
  • gget setup: soluciona el error con la ruta del archivo al ejecutar gget.setup("elm") en el sistema operativo Windows.
  • +
+

Versión ≥ 0.28.3 (22 de enero de 2024):

+
    +
  • gget search y gget ref ahora también admiten hongos 🍄, protistas 🌝 y metazoos de invertebrados 🐝 🐜 🐌 🐙 (además de vertebrados y plantas)
  • +
  • Nuevo módulo: gget cosmic
  • +
  • gget enrichr: corrige puntos de dispersión duplicados en el gráfico cuando los nombres de las rutas están duplicados
  • +
  • gget elm: +
      +
    • Se cambió el nombre de la columna de resultados orto 'Ortholog_UniProt_ID' a 'Ortholog_UniProt_Acc' para reflejar correctamente el contenido de la columna, que son accesos de UniProt. 'UniProt ID' se cambió a 'UniProt Acc' en la documentación para todos los módulos gget.
    • +
    • Se cambió el nombre de la columna de resultados ortogonales 'motif_in_query' a 'motif_inside_subject_query_overlap'.
    • +
    • Se agregó información del dominio de interacción a los resultados (nuevas columnas: "InteractionDomainId", "InteractionDomainDescription", "InteractionDomainName").
    • +
    • La cadena de expresiones regulares para coincidencias de expresiones regulares se encapsuló de la siguiente manera: "(?=(regex))" (en lugar de pasar directamente la cadena de expresiones regulares "regex") para permitir capturar todas las apariciones de un motivo cuando la longitud del motivo es variable y hay son repeticiones en la secuencia (https://regex101.com/r/HUWLlZ/1).
    • +
    +
  • +
  • gget setup: utilice el argumento out para especificar un directorio en el que se descargará la base de datos ELM. Completa esta solicitud de función.
  • +
  • gget Diamond: El comando DIAMOND ahora se ejecuta con el indicador --ignore-warnings, lo que permite secuencias de nicho, como secuencias de aminoácidos que solo contienen caracteres de nucleótidos y secuencias repetidas. Esto también es válido para las alineaciones DIAMOND realizadas dentro de gget elm.
  • +
  • Cambio de back-end de gget ref y gget search: la versión actual de Ensembl se obtiene del nuevo archivo de versión en el sitio FTP de Ensembl para evitar errores durante la carga de nuevos lanzamientos.
  • +
  • gget search: +
      +
    • Los resultados del enlace FTP (--ftp) se guardan en formato de archivo txt en lugar de json.
    • +
    • Se corrigieron enlaces URL al resumen de genes de Ensembl para especies con un nombre de subespecie e invertebrados.
    • +
    +
  • +
  • gget ref: +
      +
    • Cambios de back-end para aumentar la velocidad.
    • +
    • Nuevo argumento: list_iv_species para enumerar todas las especies de invertebrados disponibles (se puede combinar con el argumento release para obtener todas las especies disponibles de una liberación específica de Ensembl)
    • +
    +
  • +
+

Versión ≥ 0.28.2 (15 de noviembre de 2023):

+
    +
  • gget info: devuelve un mensaje de error cuando el servidor NCBI falla por un motivo distinto a un error de recuperación (esto es un error en el lado del servidor en lugar de un error con gget)
  • +
  • Reemplace el argumento obsoleto 'texto' para los métodos de tipo find() siempre que se usen con la dependencia BeautifulSoup
  • +
  • gget elm: Elimina instancias de falsos positivos y verdaderos negativos de los resultados devueltos.
  • +
  • gget elm: agrega el argumento expand
  • +
+

Versión ≥ 0.28.0 (5 de noviembre de 2023):

+
    +
  • Documentación actualizada de gget muscle para agregar un tutorial sobre cómo visualizar secuencias con diferentes longitudes de nombres de secuencia + ligero cambio en la visualización devuelta para que sea un poco más sólida ante diferentes nombres de secuencia
  • +
  • gget muscle ahora también permite una lista de secuencias como entrada (como alternativa a proporcionar la ruta a un archivo FASTA)
  • +
  • Permitir filtro de genes faltante para gget cellxgene (corrige error)
  • +
  • gget seq: permite nombres de genes faltantes (correccione [https://github.com/pachterlab/gget/issues/107](https://github.com/pachterlab/gget /números/107))
  • +
  • Nuevos argumentos para gget enrichr: use el argumento kegg_out y kegg_rank para crear una imagen de la vía KEGG con los genes del análisis de enriquecimiento resaltados (gracias a [este PR](https ://github.com/pachterlab/gget/pull/106) por Noriaki Sato)
  • +
  • Nuevos módulos: gget elm y gget Diamond
  • +
+

Versión ≥ 0.27.9 (7 de agosto de 2023):

+
    +
  • Nuevos argumentos para gget enrichr: use el argumento background_list para proporcionar una lista de genes 'background'
  • +
  • gget search ahora también busca sinónimos Ensembl (además de nombres y descripciones de genes) para obtener resultados de búsqueda más completos (gracias a Samuel Klein por la sugerencia)
  • +
+

Versión ≥ 0.27.8 (12 de julio de 2023):

+
    +
  • Nuevo argumento para gget search: especifique la versión de Ensembl desde la cual se obtiene la información con -r --release
  • +
  • Se corrigió un error en gget pdb (este error se introdujo en la versión 0.27.5)
  • +
+

Versión ≥ 0.27.7 (15 de mayo de 2023):

+ +

Versión ≥ 0.27.6 (1 de mayo de 2023) (TIRO debido a problemas con las dependencias -> reemplazada por la versión 0.27.7):

+ +

Versión ≥ 0.27.5 (6 de abril de 2023):

+
    +
  • Se actualizó gget search para que funcione correctamente con la nueva versión de Pandas 2.0.0 (lanzado el 3 de abril de 2023), además de versiones anteriores de Pandas
  • +
  • Se actualizó gget info con nuevos banderas uniprot y ncbi que permiten desactivar los resultados de estas bases de datos de forma independiente para ahorrar tiempo de ejecución (nota: el indicador ensembl_only quedó obsoleto)
  • +
  • Todos los módulos gget ahora tienen una bandera -q / --quiet (para Python: verbose=False) para desactivar la información de progreso
  • +
+

Versión ≥ 0.27.4 (19 de marzo de 2023):

+ +

Versión ≥ 0.27.3 (11 de marzo de 2023):

+
    +
  • gget info excluye los ID de PDB de forma predeterminada para aumentar la velocidad (los resultados de PDB se pueden incluir usando la marca --pdb / pdb=True).
  • +
+

Versión ≥ 0.27.2 (1 de enero de 2023):

+ +

Versión ≥ 0.27.0 (10 de diciembre de 2022):

+
    +
  • Se actualizó gget alphafold para que coincida con los cambios recientes de DeepMind
  • +
  • Número de versión actualizado para que coincida con la edad de el creador de gget siguiendo una larga tradición de laboratorio de Pachter
  • +
+

Versión ≥ 0.3.13 (11 de noviembre de 2022):

+ +

Versión ≥ 0.3.12 (10 de noviembre de 2022):

+
    +
  • gget info ahora también devuelve datos de localización subcelular de UniProt
  • +
  • El nuevo indicador gget info ensembl_only devuelve solo los resultados de Ensembl
  • +
  • Tiempo de ejecución reducido para gget info y gget seq
  • +
+

Versión ≥ 0.3.11 (7 de septiembre de 2022):

+ +

Versión ≥ 0.3.10 (2 de septiembre de 2022):

+ +

Versión ≥ 0.3.9 (25 de agosto de 2022):

+
    +
  • Instrucciones de instalación de openmm actualizadas para gget alphafold
  • +
+

Versión ≥ 0.3.8 (12 de agosto de 2022):

+
    +
  • Se corrigieron los requisitos de versión de mysql-connector-python
  • +
+

Versión ≥ 0.3.7 (9 de agosto de 2022):

+ +

Versión ≥ 0.3.5 (6 de agosto de 2022):

+ +

Versión ≥ 0.2.6 (7 de julio de 2022):

+
    +
  • ¡gget ref ahora admite genomas de plantas! 🌱
  • +
+

Versión ≥ 0.2.5 (30 de junio de 2022):

+
    +
  • NOTA: UniProt cambió la estructura de su API el 28 de junio de 2022. Actualice a la versión gget ≥ 0.2.5 si usa alguno de los módulos que consultan datos de UniProt (gget info y gget seq).
  • +
+

Versión ≥ 0.2.3: (26 de junio de 2022):

+
    +
  • JSON ahora es el formato de regreso predeterminado para la Terminal para los módulos que anteriormente devolvían el formato de data frame (CSV) (el formato se puede convertir a data frame/CSV usando la bandera [-csv][--csv]). El formato data frame/CSV sigue siendo el formato de regreso predeterminada para Python (Jupyter Lab/Google Colab) (y se puede convertir a JSON con json=True).
  • +
  • Para todos los módulos, el primer parámetro requerido se convirtió en un parámetro posicional y ya no debe nombrarse en la línea de comandos, p. ej. gget ref -s humangget ref human.
  • +
  • gget info: [--expand] está en desuso. El módulo ahora siempre devolverá toda la información disponible.
  • +
  • Ligeros cambios en la salida devuelta por gget info, incluida la devolución de los ID de Ensembl versionados.
  • +
  • gget info y gget seq ahora son compatibles con las IDs de WormBase y FlyBase.
  • +
  • Ahora también se pueden ingresar IDs de tipo Ensembl a gget archs4 y gget enrichr con la bandera [-e][--ensembl] (ensembl=True para Python (Jupyter Lab / Google Colab)).
  • +
  • El parámetro seqtype de gget seq fue reemplazado por la bandera [-t][--translate] (translate=True/False para Python (Jupyter Lab / Google Colab)) que devolverá secuencias de nucleótidos (False) o aminoácidos (True).
  • +
  • El parámetro seqtype de gget search se renombró a id_type (aún tomando los mismos parámetros 'gene' o 'transcript').
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/favicon.png b/favicon.png new file mode 100644 index 00000000..70fa60b4 Binary files /dev/null and b/favicon.png differ diff --git a/fonts/OPEN-SANS-LICENSE.txt b/fonts/OPEN-SANS-LICENSE.txt new file mode 100644 index 00000000..d6456956 --- /dev/null +++ b/fonts/OPEN-SANS-LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/fonts/SOURCE-CODE-PRO-LICENSE.txt b/fonts/SOURCE-CODE-PRO-LICENSE.txt new file mode 100644 index 00000000..366206f5 --- /dev/null +++ b/fonts/SOURCE-CODE-PRO-LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/fonts.css b/fonts/fonts.css new file mode 100644 index 00000000..858efa59 --- /dev/null +++ b/fonts/fonts.css @@ -0,0 +1,100 @@ +/* Open Sans is licensed under the Apache License, Version 2.0. See http://www.apache.org/licenses/LICENSE-2.0 */ +/* Source Code Pro is under the Open Font License. See https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL */ + +/* open-sans-300 - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 300; + src: local('Open Sans Light'), local('OpenSans-Light'), + url('open-sans-v17-all-charsets-300.woff2') format('woff2'); +} + +/* open-sans-300italic - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 300; + src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), + url('open-sans-v17-all-charsets-300italic.woff2') format('woff2'); +} + +/* open-sans-regular - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: local('Open Sans Regular'), local('OpenSans-Regular'), + url('open-sans-v17-all-charsets-regular.woff2') format('woff2'); +} + +/* open-sans-italic - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 400; + src: local('Open Sans Italic'), local('OpenSans-Italic'), + url('open-sans-v17-all-charsets-italic.woff2') format('woff2'); +} + +/* open-sans-600 - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), + url('open-sans-v17-all-charsets-600.woff2') format('woff2'); +} + +/* open-sans-600italic - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 600; + src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), + url('open-sans-v17-all-charsets-600italic.woff2') format('woff2'); +} + +/* open-sans-700 - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: local('Open Sans Bold'), local('OpenSans-Bold'), + url('open-sans-v17-all-charsets-700.woff2') format('woff2'); +} + +/* open-sans-700italic - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 700; + src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), + url('open-sans-v17-all-charsets-700italic.woff2') format('woff2'); +} + +/* open-sans-800 - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 800; + src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), + url('open-sans-v17-all-charsets-800.woff2') format('woff2'); +} + +/* open-sans-800italic - latin_vietnamese_latin-ext_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: italic; + font-weight: 800; + src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), + url('open-sans-v17-all-charsets-800italic.woff2') format('woff2'); +} + +/* source-code-pro-500 - latin_vietnamese_latin-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 500; + src: url('source-code-pro-v11-all-charsets-500.woff2') format('woff2'); +} diff --git a/fonts/open-sans-v17-all-charsets-300.woff2 b/fonts/open-sans-v17-all-charsets-300.woff2 new file mode 100644 index 00000000..9f51be37 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-300.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-300italic.woff2 b/fonts/open-sans-v17-all-charsets-300italic.woff2 new file mode 100644 index 00000000..2f545448 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-300italic.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-600.woff2 b/fonts/open-sans-v17-all-charsets-600.woff2 new file mode 100644 index 00000000..f503d558 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-600.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-600italic.woff2 b/fonts/open-sans-v17-all-charsets-600italic.woff2 new file mode 100644 index 00000000..c99aabe8 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-600italic.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-700.woff2 b/fonts/open-sans-v17-all-charsets-700.woff2 new file mode 100644 index 00000000..421a1ab2 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-700.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-700italic.woff2 b/fonts/open-sans-v17-all-charsets-700italic.woff2 new file mode 100644 index 00000000..12ce3d20 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-700italic.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-800.woff2 b/fonts/open-sans-v17-all-charsets-800.woff2 new file mode 100644 index 00000000..c94a223b Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-800.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-800italic.woff2 b/fonts/open-sans-v17-all-charsets-800italic.woff2 new file mode 100644 index 00000000..eed7d3c6 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-800italic.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-italic.woff2 b/fonts/open-sans-v17-all-charsets-italic.woff2 new file mode 100644 index 00000000..398b68a0 Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-italic.woff2 differ diff --git a/fonts/open-sans-v17-all-charsets-regular.woff2 b/fonts/open-sans-v17-all-charsets-regular.woff2 new file mode 100644 index 00000000..8383e94c Binary files /dev/null and b/fonts/open-sans-v17-all-charsets-regular.woff2 differ diff --git a/fonts/source-code-pro-v11-all-charsets-500.woff2 b/fonts/source-code-pro-v11-all-charsets-500.woff2 new file mode 100644 index 00000000..72224568 Binary files /dev/null and b/fonts/source-code-pro-v11-all-charsets-500.woff2 differ diff --git a/highlight.css b/highlight.css new file mode 100644 index 00000000..ba57b82b --- /dev/null +++ b/highlight.css @@ -0,0 +1,82 @@ +/* + * 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: #575757; +} + +/* 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-built_in, +.hljs-builtin-name, +.hljs-literal, +.hljs-type, +.hljs-params { + color: #b21e00; +} + +/* Green */ +.hljs-string, +.hljs-symbol, +.hljs-bullet { + color: #008200; +} + +/* Blue */ +.hljs-title, +.hljs-section { + color: #0030f2; +} + +/* Purple */ +.hljs-keyword, +.hljs-selector-tag { + color: #9d00ec; +} + +.hljs { + display: block; + overflow-x: auto; + background: #f6f7f6; + 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; +} diff --git a/highlight.js b/highlight.js new file mode 100644 index 00000000..180385b7 --- /dev/null +++ b/highlight.js @@ -0,0 +1,6 @@ +/* + Highlight.js 10.1.1 (93fd0d73) + License: BSD-3-Clause + Copyright (c) 2006-2020, Ivan Sagalaev +*/ +var hljs=function(){"use strict";function e(n){Object.freeze(n);var t="function"==typeof n;return Object.getOwnPropertyNames(n).forEach((function(r){!Object.hasOwnProperty.call(n,r)||null===n[r]||"object"!=typeof n[r]&&"function"!=typeof n[r]||t&&("caller"===r||"callee"===r||"arguments"===r)||Object.isFrozen(n[r])||e(n[r])})),n}class n{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data}ignoreMatch(){this.ignore=!0}}function t(e){return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}function r(e,...n){var t={};for(const n in e)t[n]=e[n];return n.forEach((function(e){for(const n in e)t[n]=e[n]})),t}function a(e){return e.nodeName.toLowerCase()}var i=Object.freeze({__proto__:null,escapeHTML:t,inherit:r,nodeStream:function(e){var n=[];return function e(t,r){for(var i=t.firstChild;i;i=i.nextSibling)3===i.nodeType?r+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:r,node:i}),r=e(i,r),a(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:r,node:i}));return r}(e,0),n},mergeStreams:function(e,n,r){var i=0,s="",o=[];function l(){return e.length&&n.length?e[0].offset!==n[0].offset?e[0].offset"}function u(e){s+=""}function d(e){("start"===e.event?c:u)(e.node)}for(;e.length||n.length;){var g=l();if(s+=t(r.substring(i,g[0].offset)),i=g[0].offset,g===e){o.reverse().forEach(u);do{d(g.splice(0,1)[0]),g=l()}while(g===e&&g.length&&g[0].offset===i);o.reverse().forEach(c)}else"start"===g[0].event?o.push(g[0].node):o.pop(),d(g.splice(0,1)[0])}return s+t(r.substr(i))}});const s="",o=e=>!!e.kind;class l{constructor(e,n){this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){this.buffer+=t(e)}openNode(e){if(!o(e))return;let n=e.kind;e.sublanguage||(n=`${this.classPrefix}${n}`),this.span(n)}closeNode(e){o(e)&&(this.buffer+=s)}value(){return this.buffer}span(e){this.buffer+=``}}class c{constructor(){this.rootNode={children:[]},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 n={kind:e,children:[]};this.add(n),this.stack.push(n)}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,n){return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n),n.children.forEach(n=>this._walk(e,n)),e.closeNode(n)),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=>{c._collapse(e)}))}}class u extends c{constructor(e){super(),this.options=e}addKeyword(e,n){""!==e&&(this.openNode(n),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,n){const t=e.root;t.kind=n,t.sublanguage=!0,this.add(t)}toHTML(){return new l(this,this.options).value()}finalize(){return!0}}function d(e){return e?"string"==typeof e?e:e.source:null}const g="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",h={begin:"\\\\[\\s\\S]",relevance:0},f={className:"string",begin:"'",end:"'",illegal:"\\n",contains:[h]},p={className:"string",begin:'"',end:'"',illegal:"\\n",contains:[h]},b={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/},m=function(e,n,t={}){var a=r({className:"comment",begin:e,end:n,contains:[]},t);return a.contains.push(b),a.contains.push({className:"doctag",begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),a},v=m("//","$"),x=m("/\\*","\\*/"),E=m("#","$");var _=Object.freeze({__proto__:null,IDENT_RE:"[a-zA-Z]\\w*",UNDERSCORE_IDENT_RE:"[a-zA-Z_]\\w*",NUMBER_RE:"\\b\\d+(\\.\\d+)?",C_NUMBER_RE:g,BINARY_NUMBER_RE:"\\b(0b[01]+)",RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const n=/^#![ ]*\//;return e.binary&&(e.begin=function(...e){return e.map(e=>d(e)).join("")}(n,/.*\b/,e.binary,/\b.*/)),r({className:"meta",begin:n,end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},BACKSLASH_ESCAPE:h,APOS_STRING_MODE:f,QUOTE_STRING_MODE:p,PHRASAL_WORDS_MODE:b,COMMENT:m,C_LINE_COMMENT_MODE:v,C_BLOCK_COMMENT_MODE:x,HASH_COMMENT_MODE:E,NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?",relevance:0},C_NUMBER_MODE:{className:"number",begin:g,relevance:0},BINARY_NUMBER_MODE:{className:"number",begin:"\\b(0b[01]+)",relevance:0},CSS_NUMBER_MODE:{className:"number",begin:"\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[h,{begin:/\[/,end:/\]/,relevance:0,contains:[h]}]}]},TITLE_MODE:{className:"title",begin:"[a-zA-Z]\\w*",relevance:0},UNDERSCORE_TITLE_MODE:{className:"title",begin:"[a-zA-Z_]\\w*",relevance:0},METHOD_GUARD:{begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{n.data._beginMatch!==e[1]&&n.ignoreMatch()}})}}),N="of and for in not or if then".split(" ");function w(e,n){return n?+n:function(e){return N.includes(e.toLowerCase())}(e)?0:1}const R=t,y=r,{nodeStream:k,mergeStreams:O}=i,M=Symbol("nomatch");return function(t){var a=[],i={},s={},o=[],l=!0,c=/(^(<[^>]+>|\t|)+|\n)/gm,g="Could not find the language '{}', did you forget to load/include a language module?";const h={disableAutodetect:!0,name:"Plain text",contains:[]};var f={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:null,__emitter:u};function p(e){return f.noHighlightRe.test(e)}function b(e,n,t,r){var a={code:n,language:e};S("before:highlight",a);var i=a.result?a.result:m(a.language,a.code,t,r);return i.code=a.code,S("after:highlight",i),i}function m(e,t,a,s){var o=t;function c(e,n){var t=E.case_insensitive?n[0].toLowerCase():n[0];return Object.prototype.hasOwnProperty.call(e.keywords,t)&&e.keywords[t]}function u(){null!=y.subLanguage?function(){if(""!==A){var e=null;if("string"==typeof y.subLanguage){if(!i[y.subLanguage])return void O.addText(A);e=m(y.subLanguage,A,!0,k[y.subLanguage]),k[y.subLanguage]=e.top}else e=v(A,y.subLanguage.length?y.subLanguage:null);y.relevance>0&&(I+=e.relevance),O.addSublanguage(e.emitter,e.language)}}():function(){if(!y.keywords)return void O.addText(A);let e=0;y.keywordPatternRe.lastIndex=0;let n=y.keywordPatternRe.exec(A),t="";for(;n;){t+=A.substring(e,n.index);const r=c(y,n);if(r){const[e,a]=r;O.addText(t),t="",I+=a,O.addKeyword(n[0],e)}else t+=n[0];e=y.keywordPatternRe.lastIndex,n=y.keywordPatternRe.exec(A)}t+=A.substr(e),O.addText(t)}(),A=""}function h(e){return e.className&&O.openNode(e.className),y=Object.create(e,{parent:{value:y}})}function p(e){return 0===y.matcher.regexIndex?(A+=e[0],1):(L=!0,0)}var b={};function x(t,r){var i=r&&r[0];if(A+=t,null==i)return u(),0;if("begin"===b.type&&"end"===r.type&&b.index===r.index&&""===i){if(A+=o.slice(r.index,r.index+1),!l){const n=Error("0 width match regex");throw n.languageName=e,n.badRule=b.rule,n}return 1}if(b=r,"begin"===r.type)return function(e){var t=e[0],r=e.rule;const a=new n(r),i=[r.__beforeBegin,r["on:begin"]];for(const n of i)if(n&&(n(e,a),a.ignore))return p(t);return r&&r.endSameAsBegin&&(r.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")),r.skip?A+=t:(r.excludeBegin&&(A+=t),u(),r.returnBegin||r.excludeBegin||(A=t)),h(r),r.returnBegin?0:t.length}(r);if("illegal"===r.type&&!a){const e=Error('Illegal lexeme "'+i+'" for mode "'+(y.className||"")+'"');throw e.mode=y,e}if("end"===r.type){var s=function(e){var t=e[0],r=o.substr(e.index),a=function e(t,r,a){let i=function(e,n){var t=e&&e.exec(n);return t&&0===t.index}(t.endRe,a);if(i){if(t["on:end"]){const e=new n(t);t["on:end"](r,e),e.ignore&&(i=!1)}if(i){for(;t.endsParent&&t.parent;)t=t.parent;return t}}if(t.endsWithParent)return e(t.parent,r,a)}(y,e,r);if(!a)return M;var i=y;i.skip?A+=t:(i.returnEnd||i.excludeEnd||(A+=t),u(),i.excludeEnd&&(A=t));do{y.className&&O.closeNode(),y.skip||y.subLanguage||(I+=y.relevance),y=y.parent}while(y!==a.parent);return a.starts&&(a.endSameAsBegin&&(a.starts.endRe=a.endRe),h(a.starts)),i.returnEnd?0:t.length}(r);if(s!==M)return s}if("illegal"===r.type&&""===i)return 1;if(B>1e5&&B>3*r.index)throw Error("potential infinite loop, way more iterations than matches");return A+=i,i.length}var E=T(e);if(!E)throw console.error(g.replace("{}",e)),Error('Unknown language: "'+e+'"');var _=function(e){function n(n,t){return RegExp(d(n),"m"+(e.case_insensitive?"i":"")+(t?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,n){n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),this.matchAt+=function(e){return RegExp(e.toString()+"|").exec("").length-1}(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=n(function(e,n="|"){for(var t=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,r=0,a="",i=0;i0&&(a+=n),a+="(";o.length>0;){var l=t.exec(o);if(null==l){a+=o;break}a+=o.substring(0,l.index),o=o.substring(l.index+l[0].length),"\\"===l[0][0]&&l[1]?a+="\\"+(+l[1]+s):(a+=l[0],"("===l[0]&&r++)}a+=")"}return a}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const n=this.matcherRe.exec(e);if(!n)return null;const t=n.findIndex((e,n)=>n>0&&void 0!==e),r=this.matchIndexes[t];return n.splice(0,t),Object.assign(n,r)}}class a{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 n=new t;return this.rules.slice(e).forEach(([e,t])=>n.addRule(e,t)),n.compile(),this.multiRegexes[e]=n,n}considerAll(){this.regexIndex=0}addRule(e,n){this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex;const t=n.exec(e);return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&(this.regexIndex=0)),t}}function i(e,n){const t=e.input[e.index-1],r=e.input[e.index+e[0].length];"."!==t&&"."!==r||n.ignoreMatch()}if(e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return function t(s,o){const l=s;if(s.compiled)return l;s.compiled=!0,s.__beforeBegin=null,s.keywords=s.keywords||s.beginKeywords;let c=null;if("object"==typeof s.keywords&&(c=s.keywords.$pattern,delete s.keywords.$pattern),s.keywords&&(s.keywords=function(e,n){var t={};return"string"==typeof e?r("keyword",e):Object.keys(e).forEach((function(n){r(n,e[n])})),t;function r(e,r){n&&(r=r.toLowerCase()),r.split(" ").forEach((function(n){var r=n.split("|");t[r[0]]=[e,w(r[0],r[1])]}))}}(s.keywords,e.case_insensitive)),s.lexemes&&c)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");return l.keywordPatternRe=n(s.lexemes||c||/\w+/,!0),o&&(s.beginKeywords&&(s.begin="\\b("+s.beginKeywords.split(" ").join("|")+")(?=\\b|\\s)",s.__beforeBegin=i),s.begin||(s.begin=/\B|\b/),l.beginRe=n(s.begin),s.endSameAsBegin&&(s.end=s.begin),s.end||s.endsWithParent||(s.end=/\B|\b/),s.end&&(l.endRe=n(s.end)),l.terminator_end=d(s.end)||"",s.endsWithParent&&o.terminator_end&&(l.terminator_end+=(s.end?"|":"")+o.terminator_end)),s.illegal&&(l.illegalRe=n(s.illegal)),void 0===s.relevance&&(s.relevance=1),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map((function(e){return function(e){return e.variants&&!e.cached_variants&&(e.cached_variants=e.variants.map((function(n){return r(e,{variants:null},n)}))),e.cached_variants?e.cached_variants:function e(n){return!!n&&(n.endsWithParent||e(n.starts))}(e)?r(e,{starts:e.starts?r(e.starts):null}):Object.isFrozen(e)?r(e):e}("self"===e?s:e)}))),s.contains.forEach((function(e){t(e,l)})),s.starts&&t(s.starts,o),l.matcher=function(e){const n=new a;return e.contains.forEach(e=>n.addRule(e.begin,{rule:e,type:"begin"})),e.terminator_end&&n.addRule(e.terminator_end,{type:"end"}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n}(l),l}(e)}(E),N="",y=s||_,k={},O=new f.__emitter(f);!function(){for(var e=[],n=y;n!==E;n=n.parent)n.className&&e.unshift(n.className);e.forEach(e=>O.openNode(e))}();var A="",I=0,S=0,B=0,L=!1;try{for(y.matcher.considerAll();;){B++,L?L=!1:(y.matcher.lastIndex=S,y.matcher.considerAll());const e=y.matcher.exec(o);if(!e)break;const n=x(o.substring(S,e.index),e);S=e.index+n}return x(o.substr(S)),O.closeAllNodes(),O.finalize(),N=O.toHTML(),{relevance:I,value:N,language:e,illegal:!1,emitter:O,top:y}}catch(n){if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{msg:n.message,context:o.slice(S-100,S+100),mode:n.mode},sofar:N,relevance:0,value:R(o),emitter:O};if(l)return{illegal:!1,relevance:0,value:R(o),emitter:O,language:e,top:y,errorRaised:n};throw n}}function v(e,n){n=n||f.languages||Object.keys(i);var t=function(e){const n={relevance:0,emitter:new f.__emitter(f),value:R(e),illegal:!1,top:h};return n.emitter.addText(e),n}(e),r=t;return n.filter(T).filter(I).forEach((function(n){var a=m(n,e,!1);a.language=n,a.relevance>r.relevance&&(r=a),a.relevance>t.relevance&&(r=t,t=a)})),r.language&&(t.second_best=r),t}function x(e){return f.tabReplace||f.useBR?e.replace(c,e=>"\n"===e?f.useBR?"
":e:f.tabReplace?e.replace(/\t/g,f.tabReplace):e):e}function E(e){let n=null;const t=function(e){var n=e.className+" ";n+=e.parentNode?e.parentNode.className:"";const t=f.languageDetectRe.exec(n);if(t){var r=T(t[1]);return r||(console.warn(g.replace("{}",t[1])),console.warn("Falling back to no-highlight mode for this block.",e)),r?t[1]:"no-highlight"}return n.split(/\s+/).find(e=>p(e)||T(e))}(e);if(p(t))return;S("before:highlightBlock",{block:e,language:t}),f.useBR?(n=document.createElement("div")).innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n"):n=e;const r=n.textContent,a=t?b(t,r,!0):v(r),i=k(n);if(i.length){const e=document.createElement("div");e.innerHTML=a.value,a.value=O(i,k(e),r)}a.value=x(a.value),S("after:highlightBlock",{block:e,result:a}),e.innerHTML=a.value,e.className=function(e,n,t){var r=n?s[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),e.includes(r)||a.push(r),a.join(" ").trim()}(e.className,t,a.language),e.result={language:a.language,re:a.relevance,relavance:a.relevance},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.relevance,relavance:a.second_best.relevance})}const N=()=>{if(!N.called){N.called=!0;var e=document.querySelectorAll("pre code");a.forEach.call(e,E)}};function T(e){return e=(e||"").toLowerCase(),i[e]||i[s[e]]}function A(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach(e=>{s[e]=n})}function I(e){var n=T(e);return n&&!n.disableAutodetect}function S(e,n){var t=e;o.forEach((function(e){e[t]&&e[t](n)}))}Object.assign(t,{highlight:b,highlightAuto:v,fixMarkup:x,highlightBlock:E,configure:function(e){f=y(f,e)},initHighlighting:N,initHighlightingOnLoad:function(){window.addEventListener("DOMContentLoaded",N,!1)},registerLanguage:function(e,n){var r=null;try{r=n(t)}catch(n){if(console.error("Language definition for '{}' could not be registered.".replace("{}",e)),!l)throw n;console.error(n),r=h}r.name||(r.name=e),i[e]=r,r.rawDefinition=n.bind(null,t),r.aliases&&A(r.aliases,{languageName:e})},listLanguages:function(){return Object.keys(i)},getLanguage:T,registerAliases:A,requireLanguage:function(e){var n=T(e);if(n)return n;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))},autoDetection:I,inherit:y,addPlugin:function(e){o.push(e)}}),t.debugMode=function(){l=!1},t.safeMode=function(){l=!0},t.versionString="10.1.1";for(const n in _)"object"==typeof _[n]&&e(_[n]);return Object.assign(t,_),t}({})}();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);hljs.registerLanguage("php",function(){"use strict";return function(e){var r={begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},t={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:'b"',end:'"'},{begin:"b'",end:"'"},e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},n={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},i={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{aliases:["php","php3","php4","php5","php6","php7"],case_insensitive:!0,keywords:i,contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;?$/,contains:[e.BACKSLASH_ESCAPE,{className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]}]},t,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[e.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:i,contains:["self",r,e.C_BLOCK_COMMENT_MODE,a,n]}]},{className:"class",beginKeywords:"class interface",end:"{",excludeEnd:!0,illegal:/[:\(\$"]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",end:";",illegal:/[\.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",end:";",contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"=>"},a,n]}}}());hljs.registerLanguage("nginx",function(){"use strict";return function(e){var n={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/}/},{begin:"[\\$\\@]"+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{$pattern:"[a-z/_]+",literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",end:"\\s|{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{begin:e.UNDERSCORE_IDENT_RE+"\\s+{",returnBegin:!0,end:"{",contains:[{className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|{",returnBegin:!0,contains:[{className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],illegal:"[^\\s\\}]"}}}());hljs.registerLanguage("csharp",function(){"use strict";return function(e){var n={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let nameof on orderby partial remove select set value var when where yield",literal:"null false true"},i=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},t=e.inherit(s,{illegal:/\n/}),l={className:"subst",begin:"{",end:"}",keywords:n},r=e.inherit(l,{illegal:/\n/}),c={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},e.BACKSLASH_ESCAPE,r]},o={className:"string",begin:/\$@"/,end:'"',contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},l]},g=e.inherit(o,{illegal:/\n/,contains:[{begin:"{{"},{begin:"}}"},{begin:'""'},r]});l.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],r.contains=[g,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];var d={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:""}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},d,a,{beginKeywords:"class interface",end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"meta-string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{begin:e.IDENT_RE+"\\s*(\\<.+\\>)?\\s*\\(",returnBegin:!0,contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,contains:[d,a,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}}());hljs.registerLanguage("perl",function(){"use strict";return function(e){var n={$pattern:/[\w.]+/,keyword:"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qq fileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmget sub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedir ioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when"},t={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:n},s={begin:"->{",end:"}"},r={variants:[{begin:/\$\d/},{begin:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{begin:/[\$%@][^\s\w{]/,relevance:0}]},i=[e.BACKSLASH_ESCAPE,t,r],a=[r,e.HASH_COMMENT_MODE,e.COMMENT("^\\=\\w","\\=cut",{endsWithParent:!0}),s,{className:"string",contains:i,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*\\<",end:"\\>",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:"{\\w+}",contains:[],relevance:0},{begin:"-?\\w+\\s*\\=\\>",contains:[],relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",begin:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",relevance:10},{className:"regexp",begin:"(m|qr)?/",end:"/[a-z]*",contains:[e.BACKSLASH_ESCAPE],relevance:0}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return t.contains=a,s.contains=a,{name:"Perl",aliases:["pl","pm"],keywords:n,contains:a}}}());hljs.registerLanguage("swift",function(){"use strict";return function(e){var i={keyword:"#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c compactMap contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),t={className:"subst",begin:/\\\(/,end:"\\)",keywords:i,contains:[]},a={className:"string",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:/"""/,end:/"""/},{begin:/"/,end:/"/}]},r={className:"number",begin:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",relevance:0};return t.contains=[r],{name:"Swift",keywords:i,contains:[a,e.C_LINE_COMMENT_MODE,n,{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*[!?]"},{className:"type",begin:"\\b[A-Z][\\wÀ-ʸ']*",relevance:0},r,{className:"function",beginKeywords:"func",end:"{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{begin://},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:i,contains:["self",r,a,e.C_BLOCK_COMMENT_MODE,{begin:":"}],illegal:/["']/}],illegal:/\[|%/},{className:"class",beginKeywords:"struct protocol class extension enum",keywords:i,end:"\\{",excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{className:"meta",begin:"(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain|@dynamicMemberLookup|@propertyWrapper)\\b"},{beginKeywords:"import",end:/$/,contains:[e.C_LINE_COMMENT_MODE,n]}]}}}());hljs.registerLanguage("makefile",function(){"use strict";return function(e){var i={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin:"",relevance:10,contains:[a,i,t,s,{begin:"\\[",end:"\\]",contains:[{className:"meta",begin:"",contains:[a,s,i,t]}]}]},e.COMMENT("\x3c!--","--\x3e",{relevance:10}),{begin:"<\\!\\[CDATA\\[",end:"\\]\\]>",relevance:10},n,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:")",end:">",keywords:{name:"style"},contains:[c],starts:{end:"",returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:")",end:">",keywords:{name:"script"},contains:[c],starts:{end:"<\/script>",returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:"",contains:[{className:"name",begin:/[^\/><\s]+/,relevance:0},c]}]}}}());hljs.registerLanguage("bash",function(){"use strict";return function(e){const s={};Object.assign(s,{className:"variable",variants:[{begin:/\$[\w\d#@][\w\d_]*/},{begin:/\$\{/,end:/\}/,contains:[{begin:/:-/,contains:[s]}]}]});const t={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},n={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,t]};t.contains.push(n);const a={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,s]},i=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10}),c={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","zsh"],keywords:{$pattern:/\b-?[a-z\._]+\b/,keyword:"if then else elif fi for while in do done case esac function",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",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},contains:[i,e.SHEBANG(),c,a,e.HASH_COMMENT_MODE,n,{className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},s]}}}());hljs.registerLanguage("c-like",function(){"use strict";return function(e){function t(e){return"(?:"+e+")?"}var n="(decltype\\(auto\\)|"+t("[a-zA-Z_]\\w*::")+"[a-zA-Z_]\\w*"+t("<.*?>")+")",r={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},a={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},i={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},s={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(a,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o={className:"title",begin:t("[a-zA-Z_]\\w*::")+e.IDENT_RE,relevance:0},c=t("[a-zA-Z_]\\w*::")+e.IDENT_RE+"\\s*\\(",l={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",literal:"true false nullptr NULL"},d=[r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a],_={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:l,contains:d.concat([{begin:/\(/,end:/\)/,keywords:l,contains:d.concat(["self"]),relevance:0}]),relevance:0},u={className:"function",begin:"("+n+"[\\*&\\s]+)+"+c,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:l,illegal:/[^\w\s\*&:<>]/,contains:[{begin:"decltype\\(auto\\)",keywords:l,relevance:0},{begin:c,returnBegin:!0,contains:[o],relevance:0},{className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r,{begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:["self",e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r]}]},r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s]};return{aliases:["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],keywords:l,disableAutodetect:!0,illegal:"",keywords:l,contains:["self",r]},{begin:e.IDENT_RE+"::",keywords:l},{className:"class",beginKeywords:"class struct",end:/[{;:]/,contains:[{begin://,contains:["self"]},e.TITLE_MODE]}]),exports:{preprocessor:s,strings:a,keywords:l}}}}());hljs.registerLanguage("coffeescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((e=>n=>!e.includes(n))(["var","const","let","function","static"])).join(" "),literal:n.concat(["yes","no","on","off"]).join(" "),built_in:a.concat(["npm","print"]).join(" ")},i="[A-Za-z$_][0-9A-Za-z$_]*",s={className:"subst",begin:/#\{/,end:/}/,keywords:t},o=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/,contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,s]},{begin:/"/,end:/"/,contains:[r.BACKSLASH_ESCAPE,s]}]},{className:"regexp",variants:[{begin:"///",end:"///",contains:[s,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+i},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{begin:"```",end:"```"},{begin:"`",end:"`"}]}];s.contains=o;var c=r.inherit(r.TITLE_MODE,{begin:i}),l={className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:t,contains:["self"].concat(o)}]};return{name:"CoffeeScript",aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/,contains:o.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{className:"function",begin:"^\\s*"+i+"\\s*=\\s*(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[c,l]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",begin:"(\\(.*\\))?\\s*\\B[-=]>",end:"[-=]>",returnBegin:!0,contains:[l]}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[c]},c]},{begin:i+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}}());hljs.registerLanguage("ruby",function(){"use strict";return function(e){var n="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",a={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},s={className:"doctag",begin:"@[A-Za-z]+"},i={begin:"#<",end:">"},r=[e.COMMENT("#","$",{contains:[s]}),e.COMMENT("^\\=begin","^\\=end",{contains:[s],relevance:10}),e.COMMENT("^__END__","\\n$")],c={className:"subst",begin:"#\\{",end:"}",keywords:a},t={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:"%[qQwWx]?\\(",end:"\\)"},{begin:"%[qQwWx]?\\[",end:"\\]"},{begin:"%[qQwWx]?{",end:"}"},{begin:"%[qQwWx]?<",end:">"},{begin:"%[qQwWx]?/",end:"/"},{begin:"%[qQwWx]?%",end:"%"},{begin:"%[qQwWx]?-",end:"-"},{begin:"%[qQwWx]?\\|",end:"\\|"},{begin:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{begin:/<<[-~]?'?(\w+)(?:.|\n)*?\n\s*\1\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,c]})]}]},b={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:a},d=[t,i,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{begin:"<\\s*",contains:[{begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE}]}].concat(r)},{className:"function",beginKeywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:n}),b].concat(r)},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(\\!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[t,{begin:n}],relevance:0},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{className:"params",begin:/\|/,end:/\|/,keywords:a},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[i,{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:"%r{",end:"}[a-z]*"},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(r),relevance:0}].concat(r);c.contains=d,b.contains=d;var g=[{begin:/^\s*=>/,starts:{end:"$",contains:d}},{className:"meta",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)",starts:{end:"$",contains:d}}];return{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/,contains:r.concat(g).concat(d)}}}());hljs.registerLanguage("yaml",function(){"use strict";return function(e){var 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,contains:[],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:"[\\|>]([0-9]?[+-])?[ ]*\\n( *)[\\S ]+\\n(\\2[\\S ]+\\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"},t,g,s],c=[...b];return c.pop(),c.push(i),l.contains=c,{name:"YAML",case_insensitive:!0,aliases:["yml","YAML"],contains:b}}}());hljs.registerLanguage("d",function(){"use strict";return function(e){var a={$pattern:e.UNDERSCORE_IDENT_RE,keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},d="((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))",n="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",t={className:"number",begin:"\\b"+d+"(L|u|U|Lu|LU|uL|UL)?",relevance:0},_={className:"number",begin:"\\b(((0[xX](([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)\\.([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)|\\.?([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))|((0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(\\.\\d*|([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)))|\\d+\\.(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)|\\.(0|[1-9][\\d_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|"+d+"(i|[fF]i|Li))",relevance:0},r={className:"string",begin:"'("+n+"|.)",end:"'",illegal:"."},i={className:"string",begin:'"',contains:[{begin:n,relevance:0}],end:'"[cwd]?'},s=e.COMMENT("\\/\\+","\\+\\/",{contains:["self"],relevance:10});return{name:"D",keywords:a,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s,{className:"string",begin:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',relevance:10},i,{className:"string",begin:'[rq]"',end:'"[cwd]?',relevance:5},{className:"string",begin:"`",end:"`[cwd]?"},{className:"string",begin:'q"\\{',end:'\\}"'},_,t,r,{className:"meta",begin:"^#!",end:"$",relevance:5},{className:"meta",begin:"#(line)",end:"$",relevance:5},{className:"keyword",begin:"@[a-zA-Z_][a-zA-Z_\\d]*"}]}}}());hljs.registerLanguage("properties",function(){"use strict";return function(e){var n="[ \\t\\f]*",t="("+n+"[:=]"+n+"|[ \\t\\f]+)",a="([^\\\\:= \\t\\f\\n]|\\\\.)+",s={end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{begin:"\\\\\\n"}]}};return{name:".properties",case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+"+t,returnBegin:!0,contains:[{className:"attr",begin:"([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",endsParent:!0,relevance:0}],starts:s},{begin:a+t,returnBegin:!0,relevance:0,contains:[{className:"meta",begin:a,endsParent:!0,relevance:0}],starts:s},{className:"attr",relevance:0,begin:a+n+"$"}]}}}());hljs.registerLanguage("http",function(){"use strict";return function(e){var n="HTTP/[0-9\\.]+";return{name:"HTTP",aliases:["https"],illegal:"\\S",contains:[{begin:"^"+n,end:"$",contains:[{className:"number",begin:"\\b\\d{3}\\b"}]},{begin:"^[A-Z]+ (.*?) "+n+"$",returnBegin:!0,end:"$",contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{begin:n},{className:"keyword",begin:"[A-Z]+"}]},{className:"attribute",begin:"^\\w",end:": ",excludeEnd:!0,illegal:"\\n|\\s|=",starts:{end:"$",relevance:0}},{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}]}}}());hljs.registerLanguage("haskell",function(){"use strict";return function(e){var n={variants:[e.COMMENT("--","$"),e.COMMENT("{-","-}",{contains:["self"]})]},i={className:"meta",begin:"{-#",end:"#-}"},a={className:"meta",begin:"^#",end:"$"},s={className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},l={begin:"\\(",end:"\\)",illegal:'"',contains:[i,a,{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TITLE_MODE,{begin:"[_a-z][\\w']*"}),n]};return{name:"Haskell",aliases:["hs"],keywords:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",contains:[{beginKeywords:"module",end:"where",keywords:"module where",contains:[l,n],illegal:"\\W\\.|;"},{begin:"\\bimport\\b",end:"$",keywords:"import qualified as hiding",contains:[l,n],illegal:"\\W\\.|;"},{className:"class",begin:"^(\\s*)?(class|instance)\\b",end:"where",keywords:"class family instance where",contains:[s,l,n]},{className:"class",begin:"\\b(data|(new)?type)\\b",end:"$",keywords:"data family type newtype deriving",contains:[i,s,l,{begin:"{",end:"}",contains:l.contains},n]},{beginKeywords:"default",end:"$",contains:[s,l,n]},{beginKeywords:"infix infixl infixr",end:"$",contains:[e.C_NUMBER_MODE,n]},{begin:"\\bforeign\\b",end:"$",keywords:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",contains:[s,e.QUOTE_STRING_MODE,n]},{className:"meta",begin:"#!\\/usr\\/bin\\/env runhaskell",end:"$"},i,a,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,s,e.inherit(e.TITLE_MODE,{begin:"^[_a-z][\\w']*"}),n,{begin:"->|<-"}]}}}());hljs.registerLanguage("handlebars",function(){"use strict";function e(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(n){const a={"builtin-name":"action bindattr collection component concat debugger each each-in get hash if in input link-to loc log lookup mut outlet partial query-params render template textarea unbound unless view with yield"},t=/\[.*?\]/,s=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,i=e("(",/'.*?'/,"|",/".*?"/,"|",t,"|",s,"|",/\.|\//,")+"),r=e("(",t,"|",s,")(?==)"),l={begin:i,lexemes:/[\w.\/]+/},c=n.inherit(l,{keywords:{literal:"true false undefined null"}}),o={begin:/\(/,end:/\)/},m={className:"attr",begin:r,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,c,o]}}},d={contains:[n.NUMBER_MODE,n.QUOTE_STRING_MODE,n.APOS_STRING_MODE,{begin:/as\s+\|/,keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},m,c,o],returnEnd:!0},g=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/\)/})});o.contains=[g];const u=n.inherit(l,{keywords:a,className:"name",starts:n.inherit(d,{end:/}}/})}),b=n.inherit(l,{keywords:a,className:"name"}),h=n.inherit(l,{className:"name",keywords:a,starts:n.inherit(d,{end:/}}/})});return{name:"Handlebars",aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},n.COMMENT(/\{\{!--/,/--\}\}/),n.COMMENT(/\{\{!/,/\}\}/),{className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[u],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[b]},{className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[u]},{className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[b]},{className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[h]}]}}}());hljs.registerLanguage("rust",function(){"use strict";return function(e){var n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!";return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield",literal:"true false Some None Ok Err",built_in:t},illegal:""}]}}}());hljs.registerLanguage("cpp",function(){"use strict";return function(e){var t=e.getLanguage("c-like").rawDefinition();return t.disableAutodetect=!1,t.name="C++",t.aliases=["cc","c++","h++","hpp","hh","hxx","cxx"],t}}());hljs.registerLanguage("ini",function(){"use strict";function e(e){return e?"string"==typeof e?e:e.source:null}function n(...n){return n.map(n=>e(n)).join("")}return function(a){var s={className:"number",relevance:0,variants:[{begin:/([\+\-]+)?[\d]+_[\d_]+/},{begin:a.NUMBER_RE}]},i=a.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];var t={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)}/}]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={className:"string",contains:[a.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,s,"self"],relevance:0},g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map(n=>e(n)).join("|")+")";return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr",starts:{end:/$/,contains:[i,c,r,t,l,s]}}]}}}());hljs.registerLanguage("objectivec",function(){"use strict";return function(e){var n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n,keyword:"@interface @class @protocol @implementation"};return{name:"Objective-C",aliases:["mm","objc","obj-c"],keywords:{$pattern:n,keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},illegal:"/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:"({|$)",excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}}());hljs.registerLanguage("apache",function(){"use strict";return function(e){var n={className:"number",begin:"\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?"};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"section",begin:"",contains:[n,{className:"number",begin:":\\d{1,5}"},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:"\\s\\[",end:"\\]$"},{className:"variable",begin:"[\\$%]\\{",end:"\\}",contains:["self",{className:"number",begin:"[\\$%]\\d+"}]},n,{className:"number",begin:"\\d+"},e.QUOTE_STRING_MODE]}}],illegal:/\S/}}}());hljs.registerLanguage("java",function(){"use strict";function e(e){return e?"string"==typeof e?e:e.source:null}function n(e){return a("(",e,")?")}function a(...n){return n.map(n=>e(n)).join("")}function s(...n){return"("+n.map(n=>e(n)).join("|")+")"}return function(e){var t="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",i={className:"meta",begin:"@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},r=e=>a("[",e,"]+([",e,"_]*[",e,"]+)?"),c={className:"number",variants:[{begin:`\\b(0[bB]${r("01")})[lL]?`},{begin:`\\b(0${r("0-7")})[dDfFlL]?`},{begin:a(/\b0[xX]/,s(a(r("a-fA-F0-9"),/\./,r("a-fA-F0-9")),a(r("a-fA-F0-9"),/\.?/),a(/\./,r("a-fA-F0-9"))),/([pP][+-]?(\d+))?/,/[fFdDlL]?/)},{begin:a(/\b/,s(a(/\d*\./,r("\\d")),r("\\d")),/[eE][+-]?[\d]+[dDfF]?/)},{begin:a(/\b/,r(/\d/),n(/\.?/),n(r(/\d/)),/[dDfFlL]?/)}],relevance:0};return{name:"Java",aliases:["jsp"],keywords:t,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"class",beginKeywords:"class interface",end:/[{;=]/,excludeEnd:!0,keywords:"class interface",illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"new throw return else",relevance:0},{className:"function",begin:"([À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:t,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,keywords:t,relevance:0,contains:[i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},c,i]}}}());hljs.registerLanguage("x86asm",function(){"use strict";return function(s){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+s.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[s.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},s.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}}());hljs.registerLanguage("kotlin",function(){"use strict";return function(e){var n={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},a={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},i={className:"subst",begin:"\\${",end:"}",contains:[e.C_NUMBER_MODE]},s={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},t={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[s,i]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,s,i]}]};i.contains.push(t);var r={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},l={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(t,{className:"meta-string"})]}]},c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),o={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},d=o;return d.variants[1].contains=[o],o.variants[1].contains=[d],{name:"Kotlin",aliases:["kt"],keywords:n,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},a,r,l,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:n,illegal:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[o,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,r,l,t,e.C_NUMBER_MODE]},c]},{className:"class",beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,excludeBegin:!0,returnEnd:!0},r,l]},t,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},{className:"number",begin:"\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",relevance:0}]}}}());hljs.registerLanguage("armasm",function(){"use strict";return function(s){const e={variants:[s.COMMENT("^[ \\t]*(?=#)","$",{relevance:0,excludeBegin:!0}),s.COMMENT("[;@]","$",{relevance:0}),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE]};return{name:"ARM Assembly",case_insensitive:!0,aliases:["arm"],keywords:{$pattern:"\\.?"+s.IDENT_RE,meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},contains:[{className:"keyword",begin:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\s)"},e,s.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",relevance:0},{className:"title",begin:"\\|",end:"\\|",illegal:"\\n",relevance:0},{className:"number",variants:[{begin:"[#$=]?0x[0-9a-f]+"},{begin:"[#$=]?0b[01]+"},{begin:"[#$=]\\d+"},{begin:"\\b\\d+"}],relevance:0},{className:"symbol",variants:[{begin:"^[ \\t]*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{begin:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{begin:"[=#]\\w+"}],relevance:0}]}}}());hljs.registerLanguage("go",function(){"use strict";return function(e){var n={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{name:"Go",aliases:["golang"],keywords:n,illegal:">>|\.\.\.) /},i={className:"subst",begin:/\{/,end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},r={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(u|b)?r?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/(fr|rf|f)'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(fr|rf|f)"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)"/,end:/"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)"/,end:/"/},{begin:/(fr|rf|f)'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/(fr|rf|f)"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l={className:"number",relevance:0,variants:[{begin:e.BINARY_NUMBER_RE+"[lLjJ]?"},{begin:"\\b(0o[0-7]+)[lLjJ]?"},{begin:e.C_NUMBER_RE+"[lLjJ]?"}]},t={className:"params",variants:[{begin:/\(\s*\)/,skip:!0,className:null},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:["self",a,l,r,e.HASH_COMMENT_MODE]}]};return i.contains=[r,l,a],{name:"Python",aliases:["py","gyp","ipython"],keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,l,{beginKeywords:"if",relevance:0},r,e.HASH_COMMENT_MODE,{variants:[{className:"function",beginKeywords:"def"},{className:"class",beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/,contains:[e.UNDERSCORE_TITLE_MODE,t,{begin:/->/,endsWithParent:!0,keywords:"None"}]},{className:"meta",begin:/^[\t ]*@/,end:/$/},{begin:/\b(print|exec)\(/}]}}}());hljs.registerLanguage("shell",function(){"use strict";return function(s){return{name:"Shell Session",aliases:["console"],contains:[{className:"meta",begin:"^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]",starts:{end:"$",subLanguage:"bash"}}]}}}());hljs.registerLanguage("scala",function(){"use strict";return function(e){var n={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"},{begin:"\\${",end:"}"}]},a={className:"string",variants:[{begin:'"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:'"""',end:'"""',relevance:10},{begin:'[a-z]+"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE,n]},{className:"string",begin:'[a-z]+"""',end:'"""',contains:[n],relevance:10}]},s={className:"type",begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},t={className:"title",begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,relevance:0},i={className:"class",beginKeywords:"class object trait type",end:/[:={\[\n;]/,excludeEnd:!0,contains:[{beginKeywords:"extends with",relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[s]},t]},l={className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,contains:[t]};return{name:"Scala",keywords:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,{className:"symbol",begin:"'\\w[\\w\\d_]*(?!')"},s,l,i,e.C_NUMBER_MODE,{className:"meta",begin:"@[A-Za-z]+"}]}}}());hljs.registerLanguage("julia",function(){"use strict";return function(e){var r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",t={$pattern:r,keyword:"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",literal:"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ ",built_in:"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool "},a={keywords:t,illegal:/<\//},n={className:"subst",begin:/\$\(/,end:/\)/,keywords:t},o={className:"variable",begin:"\\$"+r},i={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],variants:[{begin:/\w*"""/,end:/"""\w*/,relevance:10},{begin:/\w*"/,end:/"\w*/}]},l={className:"string",contains:[e.BACKSLASH_ESCAPE,n,o],begin:"`",end:"`"},s={className:"meta",begin:"@"+r};return a.name="Julia",a.contains=[{className:"number",begin:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,relevance:0},{className:"string",begin:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},i,l,s,{className:"comment",variants:[{begin:"#=",end:"=#",relevance:10},{begin:"#",end:"$"}]},e.HASH_COMMENT_MODE,{className:"keyword",begin:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{begin:/<:/}],n.contains=a.contains,a}}());hljs.registerLanguage("php-template",function(){"use strict";return function(n){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}}());hljs.registerLanguage("scss",function(){"use strict";return function(e){var t={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"},i={className:"number",begin:"#[0-9A-Fa-f]+"};return e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"selector-id",begin:"\\#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},{className:"selector-attr",begin:"\\[",end:"\\]",illegal:"$"},{className:"selector-tag",begin:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",relevance:0},{className:"selector-pseudo",begin:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{className:"selector-pseudo",begin:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},t,{className:"attribute",begin:"\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",illegal:"[^\\s]"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:":",end:";",contains:[t,i,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:"meta",begin:"!important"}]},{begin:"@(page|font-face)",lexemes:"@[a-z-]+",keywords:"@page @font-face"},{begin:"@",end:"[{;]",returnBegin:!0,keywords:"and or not only",contains:[{begin:"@[a-z-]+",className:"keyword"},t,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,e.CSS_NUMBER_MODE]}]}}}());hljs.registerLanguage("r",function(){"use strict";return function(e){var n="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{name:"R",contains:[e.HASH_COMMENT_MODE,{begin:n,keywords:{$pattern:n,keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},relevance:0},{className:"number",begin:"0[xX][0-9a-fA-F]+[Li]?\\b",relevance:0},{className:"number",begin:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",relevance:0},{className:"number",begin:"\\d+\\.(?!\\d)(?:i\\b)?",relevance:0},{className:"number",begin:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{className:"number",begin:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",relevance:0},{begin:"`",end:"`",relevance:0},{className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:'"',end:'"'},{begin:"'",end:"'"}]}]}}}());hljs.registerLanguage("sql",function(){"use strict";return function(e){var t=e.COMMENT("--","$");return{name:"SQL",case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\w\.]+/,keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void"},contains:[{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:'"',end:'"',contains:[{begin:'""'}]},{className:"string",begin:"`",end:"`"},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]}}}());hljs.registerLanguage("c",function(){"use strict";return function(e){var n=e.getLanguage("c-like").rawDefinition();return n.name="C",n.aliases=["c","h"],n}}());hljs.registerLanguage("json",function(){"use strict";return function(n){var e={literal:"true false null"},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],t=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],a={end:",",endsWithParent:!0,excludeEnd:!0,contains:t,keywords:e},l={begin:"{",end:"}",contains:[{className:"attr",begin:/"/,end:/"/,contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(a,{begin:/:/})].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(a)],illegal:"\\S"};return t.push(l,s),i.forEach((function(n){t.push(n)})),{name:"JSON",contains:t,keywords:e,illegal:"\\S"}}}());hljs.registerLanguage("python-repl",function(){"use strict";return function(n){return{aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}}());hljs.registerLanguage("markdown",function(){"use strict";return function(n){const e={begin:"<",end:">",subLanguage:"xml",relevance:0},a={begin:"\\[.+?\\][\\(\\[].*?[\\)\\]]",returnBegin:!0,contains:[{className:"string",begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0,relevance:0},{className:"link",begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}],relevance:10},i={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},s={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};i.contains.push(s),s.contains.push(i);var c=[e,a];return i.contains=i.contains.concat(c),s.contains=s.contains.concat(c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:c=c.concat(i,s)},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:c}]}]},e,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},i,s,{className:"quote",begin:"^>\\s+",contains:c,end:"$"},{className:"code",variants:[{begin:"(`{3,})(.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})(.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},a,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}}());hljs.registerLanguage("javascript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);function s(e){return r("(?=",e,")")}function r(...e){return e.map(e=>(function(e){return e?"string"==typeof e?e:e.source:null})(e)).join("")}return function(t){var i="[A-Za-z$_][0-9A-Za-z$_]*",c={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/},o={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.join(" "),literal:n.join(" "),built_in:a.join(" ")},l={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:t.C_NUMBER_RE+"n?"}],relevance:0},E={className:"subst",begin:"\\$\\{",end:"\\}",keywords:o,contains:[]},d={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"xml"}},g={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[t.BACKSLASH_ESCAPE,E],subLanguage:"css"}},u={className:"string",begin:"`",end:"`",contains:[t.BACKSLASH_ESCAPE,E]};E.contains=[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,l,t.REGEXP_MODE];var b=E.contains.concat([{begin:/\(/,end:/\)/,contains:["self"].concat(E.contains,[t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE])},t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:b};return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:o,contains:[t.SHEBANG({binary:"node",relevance:5}),{className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,t.C_LINE_COMMENT_MODE,t.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:i+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),t.C_BLOCK_COMMENT_MODE,l,{begin:r(/[{,\n]\s*/,s(r(/(((\/\/.*)|(\/\*(.|\n)*\*\/))\s*)*/,i+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:i+s("\\s*:"),relevance:0}]},{begin:"("+t.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+t.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:t.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:o,contains:b}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:"<>",end:""},{begin:c.begin,end:c.end}],subLanguage:"xml",contains:[{begin:c.begin,end:c.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/\{/,excludeEnd:!0,contains:[t.inherit(t.TITLE_MODE,{begin:i}),_],illegal:/\[|%/},{begin:/\$[(.]/},t.METHOD_GUARD,{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends"},t.UNDERSCORE_TITLE_MODE]},{beginKeywords:"constructor",end:/\{/,excludeEnd:!0},{begin:"(get|set)\\s+(?="+i+"\\()",end:/{/,keywords:"get set",contains:[t.inherit(t.TITLE_MODE,{begin:i}),{begin:/\(\)/},_]}],illegal:/#(?!!)/}}}());hljs.registerLanguage("typescript",function(){"use strict";const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]);return function(r){var t={$pattern:"[A-Za-z$_][0-9A-Za-z$_]*",keyword:e.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]).join(" "),literal:n.join(" "),built_in:a.concat(["any","void","number","boolean","string","object","never","enum"]).join(" ")},s={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},i={className:"number",variants:[{begin:"\\b(0[bB][01]+)n?"},{begin:"\\b(0[oO][0-7]+)n?"},{begin:r.C_NUMBER_RE+"n?"}],relevance:0},o={className:"subst",begin:"\\$\\{",end:"\\}",keywords:t,contains:[]},c={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"xml"}},l={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[r.BACKSLASH_ESCAPE,o],subLanguage:"css"}},E={className:"string",begin:"`",end:"`",contains:[r.BACKSLASH_ESCAPE,o]};o.contains=[r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,i,r.REGEXP_MODE];var d={begin:"\\(",end:/\)/,keywords:t,contains:["self",r.QUOTE_STRING_MODE,r.APOS_STRING_MODE,r.NUMBER_MODE]},u={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,s,d]};return{name:"TypeScript",aliases:["ts"],keywords:t,contains:[r.SHEBANG(),{className:"meta",begin:/^\s*['"]use strict['"]/},r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,i,{begin:"("+r.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,r.REGEXP_MODE,{className:"function",begin:"(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|"+r.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:r.UNDERSCORE_IDENT_RE},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:t,contains:d.contains}]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[\{;]/,excludeEnd:!0,keywords:t,contains:["self",r.inherit(r.TITLE_MODE,{begin:"[A-Za-z$_][0-9A-Za-z$_]*"}),u],illegal:/%/,relevance:0},{beginKeywords:"constructor",end:/[\{;]/,excludeEnd:!0,contains:["self",u]},{begin:/module\./,keywords:{built_in:"module"},relevance:0},{beginKeywords:"module",end:/\{/,excludeEnd:!0},{beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},{begin:/\$[(.]/},{begin:"\\."+r.IDENT_RE,relevance:0},s,d]}}}());hljs.registerLanguage("plaintext",function(){"use strict";return function(t){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}}());hljs.registerLanguage("less",function(){"use strict";return function(e){var n="([\\w-]+|@{[\\w-]+})",a=[],s=[],t=function(e){return{className:"string",begin:"~?"+e+".*?"+e}},r=function(e,n,a){return{className:e,begin:n,relevance:a}},i={begin:"\\(",end:"\\)",contains:s,relevance:0};s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t("'"),t('"'),e.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},r("number","#[0-9A-Fa-f]+\\b"),i,r("variable","@@?[\\w-]+",10),r("variable","@{[\\w-]+}"),r("built_in","~?`[^`]*?`"),{className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0},{className:"meta",begin:"!important"});var c=s.concat({begin:"{",end:"}",contains:a}),l={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(s)},o={begin:n+"\\s*:",returnBegin:!0,end:"[;}]",relevance:0,contains:[{className:"attribute",begin:n,end:":",excludeEnd:!0,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:s}}]},g={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",returnEnd:!0,contains:s,relevance:0}},d={className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:c}},b={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:n,end:"{"}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l,r("keyword","all\\b"),r("variable","@{[\\w-]+}"),r("selector-tag",n+"%?",0),r("selector-id","#"+n),r("selector-class","\\."+n,0),r("selector-tag","&",0),{className:"selector-attr",begin:"\\[",end:"\\]"},{className:"selector-pseudo",begin:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin:"\\(",end:"\\)",contains:c},{begin:"!important"}]};return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,d,o,b),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:a}}}());hljs.registerLanguage("lua",function(){"use strict";return function(e){var t={begin:"\\[=*\\[",end:"\\]=*\\]",contains:["self"]},a=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[","\\]=*\\]",{contains:[t],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:a.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:a}].concat(a)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:"\\[=*\\[",end:"\\]=*\\]",contains:[t],relevance:5}])}}}()); diff --git a/index.html b/index.html new file mode 100644 index 00000000..64e37389 --- /dev/null +++ b/index.html @@ -0,0 +1,284 @@ + + + + + + Introduction - gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image +Downloads +Conda +license +status +status +Star on GitHub

+

+

Welcome!

+

gget is a free, open-source command-line tool and Python package that enables efficient querying of genomic databases.
+
+gget consists of a collection of separate but interoperable modules, each designed to facilitate one type of database querying in a single line of code.
+
+NOTE: The databases queried by gget are continuously being updated which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary. If you encounter a problem, please upgrade to the latest gget version using pip install --upgrade gget. If the problem persists, please report the issue.
+
+
 Request a new feature 
+
+

+
+

gget info and gget seq are currently unable to fetch information for WormBase and FlyBase IDs (all other IDs are functioning normally). This issue arose due to a bug in Ensembl release 112. We appreciate Ensembl's efforts in addressing this issue and expect a fix soon. Thank you for your patience.

+
+

gget modules

+

These are the gget core modules. Click on any module to access detailed documentation.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gget alphafold
Predict 3D protein structure from an amino acid sequence.
gget archs4
What is the expression of my gene in tissue X?
gget bgee
Find all orthologs of a gene.
gget blast
BLAST a nucleotide or amino acid sequence.
gget blat
Find the genomic location of a nucleotide or amino acid sequence.
gget cbio
Explore a gene's expression in the specified cancers.
gget cellxgene
Get ready-to-use single-cell RNA seq count matrices from certain tissues/ diseases/ etc.
gget cosmic
Search for genes, mutations, and other factors associated with certain cancers.
gget diamond
Align amino acid sequences to a reference.
gget elm
Find protein interaction domains and functions in an amino acid sequence.
gget enrichr
Check if a list of genes is associated with a specific celltype/ pathway/ disease/ etc.
gget info
Fetch all of the information associated with an Ensembl ID.
gget muscle
Align multiple nucleotide or amino acid sequences to each other.
gget mutate
Mutate nucleotide sequences based on specified mutations.
gget opentargets
Explore which diseases and drugs a gene is associated with.
gget pdb
Fetch data from the Protein Data Bank (PDB) based on a PDB ID.
gget ref
Get reference genomes from Ensembl.
gget search
Find Ensembl IDs associated with the specified search word.
gget seq
Fetch the nucleotide or amino acid sequence of a gene.
+
+

If you use gget in a publication, please cite*:

+
Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836
+
+

Read the article here: https://doi.org/10.1093/bioinformatics/btac836

+
+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/mark.min.js b/mark.min.js new file mode 100644 index 00000000..16362318 --- /dev/null +++ b/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 + + + + + gget + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

pypi version +image +Downloads +Conda +license +status +status +Star on GitHub

+

+

Welcome!

+

gget is a free, open-source command-line tool and Python package that enables efficient querying of genomic databases.
+
+gget consists of a collection of separate but interoperable modules, each designed to facilitate one type of database querying in a single line of code.
+
+NOTE: The databases queried by gget are continuously being updated which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary. If you encounter a problem, please upgrade to the latest gget version using pip install --upgrade gget. If the problem persists, please report the issue.
+
+
 Request a new feature 
+
+

+
+

gget info and gget seq are currently unable to fetch information for WormBase and FlyBase IDs (all other IDs are functioning normally). This issue arose due to a bug in Ensembl release 112. We appreciate Ensembl's efforts in addressing this issue and expect a fix soon. Thank you for your patience.

+
+

gget modules

+

These are the gget core modules. Click on any module to access detailed documentation.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gget alphafold
Predict 3D protein structure from an amino acid sequence.
gget archs4
What is the expression of my gene in tissue X?
gget bgee
Find all orthologs of a gene.
gget blast
BLAST a nucleotide or amino acid sequence.
gget blat
Find the genomic location of a nucleotide or amino acid sequence.
gget cbio
Explore a gene's expression in the specified cancers.
gget cellxgene
Get ready-to-use single-cell RNA seq count matrices from certain tissues/ diseases/ etc.
gget cosmic
Search for genes, mutations, and other factors associated with certain cancers.
gget diamond
Align amino acid sequences to a reference.
gget elm
Find protein interaction domains and functions in an amino acid sequence.
gget enrichr
Check if a list of genes is associated with a specific celltype/ pathway/ disease/ etc.
gget info
Fetch all of the information associated with an Ensembl ID.
gget muscle
Align multiple nucleotide or amino acid sequences to each other.
gget mutate
Mutate nucleotide sequences based on specified mutations.
gget opentargets
Explore which diseases and drugs a gene is associated with.
gget pdb
Fetch data from the Protein Data Bank (PDB) based on a PDB ID.
gget ref
Get reference genomes from Ensembl.
gget search
Find Ensembl IDs associated with the specified search word.
gget seq
Fetch the nucleotide or amino acid sequence of a gene.
+
+

If you use gget in a publication, please cite*:

+
Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836
+
+

Read the article here: https://doi.org/10.1093/bioinformatics/btac836

+
+ +

✨ What's new

+

Version ≥ 0.29.0 (Sep 25, 2024):

+
    +
  • New modules: + +
  • +
  • gget enrichr now also supports species other than human and mouse (fly, yeast, worm, and fish) via modEnrichR
  • +
  • gget mutate:
    +gget mutate will now merge identical sequences in the final file by default. Mutation creation was vectorized to decrease runtime. Improved flanking sequence check for non-substitution mutations to make sure no wildtype kmer is retained in the mutation-containing sequence. Addition of several new arguments to customize sequence generation and output.
  • +
  • gget cosmic:
    +Added support for targeted as well as gene screens. The CSV file created for gget mutate now also contains protein mutation info.
  • +
  • gget ref:
    +Added out file option.
  • +
  • gget info and gget seq:
    +Switched to Ensembl POST API to increase speed (nothing changes in front end).
  • +
  • Other "behind the scenes" changes: + +
  • +
+

Version ≥ 0.28.6 (Jun 2, 2024):

+
    +
  • New module: gget mutate
  • +
  • gget cosmic: You can now download entire COSMIC databases using the argument download_cosmic argument
  • +
  • gget ref: Can now fetch the GRCh37 genome assembly using species='human_grch37'
  • +
  • gget search: Adjust access of human data to the structure of Ensembl release 112 (fixes issue 129)
  • +
+

Version ≥ 0.28.5 (May 29, 2024):

+
    +
  • Yanked due to logging bug in gget.setup("alphafold") + inversion mutations in gget mutate only reverse the string instead of also computing the complementary strand
  • +
+

Version ≥ 0.28.4 (January 31, 2024):

+
    +
  • gget setup: Fix bug with filepath when running gget.setup("elm") on Windows OS.
  • +
+

Version ≥ 0.28.3 (January 22, 2024):

+
    +
  • gget search and gget ref now also support fungi 🍄, protists 🌝, and invertebrate metazoa 🐝 🐜 🐌 🐙 (in addition to vertebrates and plants)
  • +
  • New module: gget cosmic
  • +
  • gget enrichr: Fix duplicate scatter dots in plot when pathway names are duplicated
  • +
  • gget elm: +
      +
    • Changed ortho results column name 'Ortholog_UniProt_ID' to 'Ortholog_UniProt_Acc' to correctly reflect the column contents, which are UniProt Accessions. 'UniProt ID' was changed to 'UniProt Acc' in the documentation for all gget modules.
    • +
    • Changed ortho results column name 'motif_in_query' to 'motif_inside_subject_query_overlap'.
    • +
    • Added interaction domain information to results (new columns: "InteractionDomainId", "InteractionDomainDescription", "InteractionDomainName").
    • +
    • The regex string for regular expression matches was encapsulated as follows: "(?=(regex))" (instead of directly passing the regex string "regex") to enable capturing all occurrences of a motif when the motif length is variable and there are repeats in the sequence (https://regex101.com/r/HUWLlZ/1).
    • +
    +
  • +
  • gget setup: Use the out argument to specify a directory the ELM database will be downloaded into. Completes this feature request.
  • +
  • gget diamond: The DIAMOND command is now run with --ignore-warnings flag, allowing niche sequences such as amino acid sequences that only contain nucleotide characters and repeated sequences. This is also true for DIAMOND alignments performed within gget elm.
  • +
  • gget ref and gget search back-end change: the current Ensembl release is fetched from the new release file on the Ensembl FTP site to avoid errors during uploads of new releases.
  • +
  • gget search: +
      +
    • FTP link results (--ftp) are saved in txt file format instead of json.
    • +
    • Fix URL links to Ensembl gene summary for species with a subspecies name and invertebrates.
    • +
    +
  • +
  • gget ref: +
      +
    • Back-end changes to increase speed
    • +
    • New argument: list_iv_species to list all available invertebrate species (can be combined with the release argument to fetch all species available from a specific Ensembl release)
    • +
    +
  • +
+

Version ≥ 0.28.2 (November 15, 2023):

+
    +
  • gget info: Return a logging error message when the NCBI server fails for a reason other than a fetch fail (this is an error on the server side rather than an error with gget)
  • +
  • Replace deprecated 'text' argument to find()-type methods whenever used with dependency BeautifulSoup
  • +
  • gget elm: Remove false positive and true negative instances from returned results
  • +
  • gget elm: Add expand argument
  • +
+

Version ≥ 0.28.0 (November 5, 2023):

+ +

Version ≥ 0.27.9 (August 7, 2023):

+
    +
  • gget enrichr: Use new argument background_list to provide a list of background genes
  • +
  • gget search now also searches Ensembl synonyms (in addition to gene descriptions and names) to return more comprehensive search results (thanks to Samuel Klein for the suggestion)
  • +
+

Version ≥ 0.27.8 (July 12, 2023):

+
    +
  • gget search: Specify the Ensembl release from which information is fetched with new argument -r --release
  • +
  • Fixed bug in gget pdb (this bug was introduced in version 0.27.5)
  • +
+

Version ≥ 0.27.7 (May 15, 2023):

+ +

Version ≥ 0.27.6 (May 1, 2023) (YANKED due to problems with dependencies -> replaced with version 0.27.7):

+ +

Version ≥ 0.27.5 (April 6, 2023):

+
    +
  • Updated gget search to function correctly with new Pandas version 2.0.0 (released on April 3rd, 2023) as well as older versions of Pandas
  • +
  • Updated gget info with new flags uniprot and ncbi which allow turning off results from these databases independently to save runtime (note: flag ensembl_only was deprecated)
  • +
  • All gget modules now feature a -q / --quiet (Python: verbose=False) flag to turn off progress information
  • +
+

Version ≥ 0.27.4 (March 19, 2023):

+ +

Version ≥ 0.27.3 (March 11, 2023):

+
    +
  • gget info excludes PDB IDs by default to increase speed (PDB results can be included using flag --pdb / pdb=True).
  • +
+

Version ≥ 0.27.2 (January 1, 2023):

+ +

Version ≥ 0.27.0 (December 10, 2022):

+
    +
  • Updated gget alphafold to match recent changes by DeepMind
  • +
  • Updated version number to match gget's creator's age following a long-standing Pachter lab tradition
  • +
+

Version ≥ 0.3.13 (November 11, 2022):

+ +

Version ≥ 0.3.12 (November 10, 2022):

+
    +
  • gget info now also returns subcellular localisation data from UniProt
  • +
  • New gget info flag ensembl_only returns only Ensembl results
  • +
  • Reduced runtime for gget info and gget seq
  • +
+

Version ≥ 0.3.11 (September 7, 2022):

+ +

Version ≥ 0.3.10 (September 2, 2022):

+ +

Version ≥ 0.3.9 (August 25, 2022):

+ +

Version ≥ 0.3.8 (August 12, 2022):

+
    +
  • Fixed mysql-connector-python version requirements
  • +
+

Version ≥ 0.3.7 (August 9, 2022):

+
    +
  • NOTE: The Ensembl FTP site changed its structure on August 8, 2022. Please upgrade to gget version ≥ 0.3.7 if you use gget ref
  • +
+

Version ≥ 0.3.5 (August 6, 2022):

+ +

Version ≥ 0.2.6 (July 7, 2022):

+
    +
  • gget ref now supports plant genomes! 🌱
  • +
+

Version ≥ 0.2.5 (June 30, 2022):

+
    +
  • NOTE: UniProt changed the structure of their API on June 28, 2022. Please upgrade to gget version ≥ 0.2.5 if you use any of the modules querying data from UniProt (gget info and gget seq).
  • +
+

Version ≥ 0.2.3: (June 26, 2022):

+
    +
  • JSON is now the default output format for the command-line interface for modules that previously returned data frame (CSV) format by default (the output can be converted to data frame/CSV using flag [-csv][--csv]). Data frame/CSV remains the default output for Jupyter Lab / Google Colab (and can be converted to JSON with json=True).
  • +
  • For all modules, the first required argument was converted to a positional argument and should not be named anymore in the command-line, e.g. gget ref -s humangget ref human.
  • +
  • gget info: [--expand] is deprecated. The module will now always return all of the available information.
  • +
  • Slight changes to the output returned by gget info, including the return of versioned Ensembl IDs.
  • +
  • gget info and gget seq now support 🪱 WormBase and 🪰 FlyBase IDs.
  • +
  • gget archs4 and gget enrichr now also take Ensembl IDs as input with added flag [-e][--ensembl] (ensembl=True in Jupyter Lab / Google Colab).
  • +
  • gget seq argument seqtype was replaced by flag [-t][--translate] (translate=True/False in Jupyter Lab / Google Colab) which will return either nucleotide (False) or amino acid (True) sequences.
  • +
  • gget search argument seqtype was renamed to id_type for clarity (still taking the same arguments 'gene' or 'transcript').
  • +
+

pypi version +image

+

Installation

+
pip install --upgrade gget
+
+

Alternative:

+
conda install -c bioconda gget
+
+

For use in Jupyter Lab / Google Colab:

+
import gget
+
+

🪄 Quick start guide

+

Command line:

+
# Fetch all Homo sapiens reference and annotation FTPs from the latest Ensembl release
+$ gget ref homo_sapiens
+
+# Get Ensembl IDs of human genes with "ace2" or "angiotensin converting enzyme 2" in their name/description
+$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2'
+
+# Look up gene ENSG00000130234 (ACE2) and its transcript ENST00000252519
+$ gget info ENSG00000130234 ENST00000252519
+
+# Fetch the amino acid sequence of the canonical transcript of gene ENSG00000130234
+$ gget seq --translate ENSG00000130234
+
+# Quickly find the genomic location of (the start of) that amino acid sequence
+$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# BLAST (the start of) that amino acid sequence
+$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Align multiple nucleotide or amino acid sequences against each other (also accepts path to FASTA file)  
+$ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Align one or more amino acid sequences against a reference (containing one or more sequences) (local BLAST) (also accepts paths to FASTA files)  
+$ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS  
+
+# Use Enrichr for an ontology analysis of a list of genes
+$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P
+
+# Get the human tissue expression of gene ACE2
+$ gget archs4 -w tissue ACE2
+
+# Get the protein structure (in PDB format) of ACE2 as stored in the Protein Data Bank (PDB ID returned by gget info)
+$ gget pdb 1R42 -o 1R42.pdb
+
+# Find Eukaryotic Linear Motifs (ELMs) in a protein sequence
+$ gget setup elm # setup only needs to be run once
+$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Fetch a scRNAseq count matrix (AnnData format) based on specified gene(s), tissue(s), and cell type(s) (default species: human)
+$ gget setup cellxgene # setup only needs to be run once
+$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad
+
+# Predict the protein structure of GFP from its amino acid sequence
+$ gget setup alphafold # setup only needs to be run once
+$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK
+
+

Python (Jupyter Lab / Google Colab):

+
import gget
+gget.ref("homo_sapiens")
+gget.search(["ace2", "angiotensin converting enzyme 2"], "homo_sapiens")
+gget.info(["ENSG00000130234", "ENST00000252519"])
+gget.seq("ENSG00000130234", translate=True)
+gget.blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+gget.diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget.enrichr(["ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"], database="ontology", plot=True)
+gget.archs4("ACE2", which="tissue")
+gget.pdb("1R42", save=True)
+
+gget.setup("elm") # setup only needs to be run once
+ortho_df, regex_df = gget.elm("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+
+gget.setup("cellxgene") # setup only needs to be run once
+gget.cellxgene(gene = ["ACE2", "SLC5A1"], tissue = "lung", cell_type = "mucus secreting cell")
+
+gget.setup("alphafold") # setup only needs to be run once
+gget.alphafold("MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK")
+
+

Call gget from R using reticulate:

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+gget$ref("homo_sapiens")
+gget$search(list("ace2", "angiotensin converting enzyme 2"), "homo_sapiens")
+gget$info(list("ENSG00000130234", "ENST00000252519"))
+gget$seq("ENSG00000130234", translate=TRUE)
+gget$blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$muscle(list("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"), out="out.afa")
+gget$diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget$enrichr(list("ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"), database="ontology")
+gget$archs4("ACE2", which="tissue")
+gget$pdb("1R42", save=TRUE)
+
+

More examples

+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget alphafold 🪢

+

Predict the 3D structure of a protein from its amino acid sequence using a simplified version of DeepMind’s AlphaFold2 originally released and benchmarked for AlphaFold Colab.
+Returns: Predicted structure (PDB) and alignment error (json).

+

Before using gget alphafold for the first time:

+
    +
  1. Install the third-party dependency openmm v7.5.1 (or v7.7.0 for Python >= 3.10) by running the following command from the command line:
    +conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1
    +(replace with openmm=7.7.0 for Python >= 3.10)
    +Recommendation: Follow with conda update -qy conda to update conda to the latest version afterwards.
  2. +
  3. Run gget setup alphafold / gget.setup("alphafold") once (also see gget setup). Running gget setup alphafold / gget.setup("alphafold") will download and install the latest version of AlphaFold2 hosted on the AlphaFold GitHub Repo. You can rerun this command any time to update the software after a new AlphaFold release.
  4. +
+

Positional argument
+sequence
+Amino acid sequence (str), or list of sequences (gget alphafold will automatically use the multimer model if multiple sequences are passed), or path to FASTA file.

+

Optional arguments
+-mr --multimer_recycles
+The multimer model will continue recycling until the predictions stop changing, up to the limit set here. Default: 3.
+For higher accuracy, at the potential cost of longer inference times, set this to 20.

+

-o --out
+Path to folder to save prediction results in (str). Default: "./[date_time]_gget_alphafold_prediction".

+

Flags
+-mfm --multimer_for_monomer
+Use multimer model for a monomer.

+

-r --relax
+AMBER relax the best model.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

plot
+Python only. plot=True provides an interactive, 3D graphical overview of the predicted structure and alignment quality using py3Dmol and matplotlib (default: True).

+

show_sidechains
+Python only. show_sidechains=True includes side chains in the plot (default: True).

+

Example

+
# Generate new prediction from amino acid sequence
+gget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Find similar sequences deposited on the PDB for comparative analysis
+gget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality
+gget pdb 3UQ3 -o 3UQ3.pdb
+gget pdb 2K42 -o 2K42.pdb
+
+
# Python
+gget.alphafold("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH")
+
+# Find similar sequences deposited on the PDB for comparative analysis
+gget.blast("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH", database="pdbaa")
+
+# Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality
+gget.pdb("3UQ3", save=True)
+gget.pdb("2K42", save=True)
+
+

gget alphafold returns the predicted structure (PDB) and predicted alignment error (.json) in a new folder ("./[date_time]_gget_alphafold_prediction"). The use case above exemplifies how to use gget blast and gget pdb for a comparative analysis of the new prediction. PDB files can be viewed interactively in 3D online, or using programs like PyMOL or Blender. To compare two PDB files, you can use this website. The Python interface also returns interactive plots, which can be generated from the PDB and JSON as described in the gget alphafold FAQ Q4.

+ +

Tutorials

+

🔗 Google Colab tutorial

+ +

🔗 gget alphafold FAQ

+

References

+

If you use gget alphafold in a publication, please cite the following articles:

+ +

And, if applicable:

+ +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget archs4 🐁

+

Find the most correlated genes to a gene of interest or find the gene's tissue expression atlas using ARCHS4.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+gene
+Short name (gene symbol) of gene of interest, e.g. STAT4.
+Alternatively: use flag --ensembl to input an Ensembl gene IDs, e.g. ENSG00000138378.

+

Optional arguments
+-w --which
+'correlation' (default) or 'tissue'.
+'correlation' returns a gene correlation table that contains the 100 most correlated genes to the gene of interest. The Pearson correlation is calculated over all samples and tissues in ARCHS4.
+'tissue' returns a tissue expression atlas calculated from human or mouse samples (as defined by 'species') in ARCHS4.

+

-s --species
+'human' (default) or 'mouse'.
+Defines whether to use human or mouse samples from ARCHS4.
+(Only for tissue expression atlas.)

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-e --ensembl
+Add this flag if gene is given as an Ensembl gene ID.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget archs4 ACE2
+
+
# Python
+gget.archs4("ACE2")
+
+

→ Returns the 100 most correlated genes to ACE2:

+
+ + + +
gene_symbolpearson_correlation
SLC5A10.579634
CYP2C180.576577
. . .. . .
+
+



+
gget archs4 -w tissue ACE2
+
+
# Python
+gget.archs4("ACE2", which="tissue")
+
+

→ Returns the tissue expression of ACE2 (by default, human data is used):

+
+ + + +
idminq1medianq3max
System.Urogenital/Reproductive System.Kidney.RENAL CORTEX0.1136448.2740609.69584010.5167011.21970
System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL0.1136445.9055609.57045013.2647013.83590
. . .. . .. . .. . .. . .. . .
+
+



+Check out this tutorial by Dave Tang who wrote an R script to create this figure from the gget archs4 JSON output:

+

image

+

More examples

+

References

+

If you use gget archs4 in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

    +
  • +
  • +

    Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget bgee 🐝

+

Fetch orthology and gene expression data from Bgee using Ensembl IDs.
+Return format: JSON/CSV (command-line) or data frame (Python).

+
+

If you are specifically interested in human gene expression data, consider using gget opentargets or gget archs4 instead. +gget bgee has less data, but supports more species.

+
+

This module was written by Sam Wagenaar.

+

Positional argument
+ens_id
+Ensembl gene ID, e.g. ENSG00000169194 or ENSSSCG00000014725.

+

Required arguments
+-t --type
+Type of data to fetch. Options: orthologs, expression.

+

Optional arguments
+-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.

+

Flags
+-csv --csv
+Command-line only. Returns the output in CSV format, instead of JSON format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Get orthologs for a gene

+
gget bgee ENSSSCG00000014725 -t orthologs
+
+
import gget
+gget.bgee("ENSSSCG00000014725", type="orthologs")
+
+

→ Returns orthologs for the gene with Ensembl ID ENSSSCG00000014725.

+
+ + + + + + +
gene_idgene_namespecies_idgenusspecies
734881hbb18355Xenopuslaevis
ENSFCAG00000038029LOC1010981599685Feliscatus
ENSBTAG00000047356LOC1071311729913Bostaurus
ENSOARG00000019163LOC1011054379940Ovisaries
ENSXETG00000025667hbg18364Xenopustropicalis
...............
+
+



+

Get gene expression data for a gene

+
gget bgee ENSSSCG00000014725 -t expression
+
+
import gget
+gget.bgee("ENSSSCG00000014725", type="expression")
+
+

→ Returns gene expression data for the gene with Ensembl ID ENSSSCG00000014725.

+
+ + + + + + +
anat_entity_idanat_entity_namescorescore_confidenceexpression_state
UBERON:0000178blood99.98highexpressed
UBERON:0002106spleen99.96highexpressed
UBERON:0002190subcutaneous adipose tissue99.70highexpressed
UBERON:0005316endocardial endothelium99.61highexpressed
UBERON:0002107liver99.27highexpressed
...............
+
+

More examples

+

References

+

If you use gget bgee in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget blast 💥

+

BLAST a nucleotide or amino acid sequence to any BLAST database.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+sequence
+Nucleotide or amino acid sequence, or path to FASTA or .txt file.

+

Optional arguments
+-p --program
+'blastn', 'blastp', 'blastx', 'tblastn', or 'tblastx'.
+Default: 'blastn' for nucleotide sequences; 'blastp' for amino acid sequences.

+

-db --database
+'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', or 'pdbnt'.
+Default: 'nt' for nucleotide sequences; 'nr' for amino acid sequences.
+More info on BLAST databases

+

-l --limit
+Limits number of hits to return. Default: 50.

+

-e --expect
+Defines the expect value cutoff. Default: 10.0.

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-lcf --low_comp_filt
+Turns on low complexity filter.

+

-mbo --megablast_off
+Turns off MegaBLAST algorithm. Default: MegaBLAST on (blastn only).

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blast("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR")
+
+

→ Returns the BLAST result of the sequence of interest. gget blast automatically detects this sequence as an amino acid sequence and therefore sets the BLAST program to blastp with database nr.

+
+ + +
DescriptionScientific NameCommon NameTaxidMax ScoreTotal ScoreQuery Cover...
PREDICTED: gamma-aminobutyric acid receptor-as...Colobus angolensis palliatusNaN336983180180100%...
. . .. . .. . .. . .. . .. . .. . ....
+
+



+BLAST from .fa or .txt file:

+
gget blast fasta.fa
+
+
# Python
+gget.blast("fasta.fa")
+
+

→ Returns the BLAST results of the first sequence contained in the fasta.fa file.

+

More examples

+

References

+

If you use gget blast in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget blat 🎯

+

Find the genomic location of a nucleotide or amino acid sequence using BLAT.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+sequence
+Nucleotide or amino acid sequence, or path to FASTA or .txt file.

+

Optional arguments
+-st --seqtype
+'DNA', 'protein', 'translated%20RNA', or 'translated%20DNA'.
+Default: 'DNA' for nucleotide sequences; 'protein' for amino acid sequences.

+

-a --assembly
+'human' (hg38) (default), 'mouse' (mm39), 'zebrafinch' (taeGut2),
+or any of the species assemblies available here (use short assembly name).

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blat("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR", assembly="taeGut2")
+
+

→ Returns BLAT results for assembly taeGut2 (zebra finch). In the above example, gget blat automatically detects this sequence as an amino acid sequence and therefore sets the BLAT seqtype to protein.

+
+ +
genomequery_sizealigned_startaligned_endmatchesmismatches%_aligned...
taeGut288128877087.5...
+
+

More examples

+

References

+

If you use gget blat in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cbio 📖

+

Plot cancer genomics heatmaps using data from cBioPortal using Ensembl IDs or gene names.

+

This module was written by Sam Wagenaar.

+

Positional argument
+subcommand
+Either search or plot

+ +

Find cBioPortal study IDs by keyword.
+Return format: JSON (command-line) or string list (Python).
+Note: This does not return studies with mixed cancer types.

+

Positional argument
+keywords
+Space-separated list of keywords to search for, e.g. breast lung.
+Python: Pass keywords as a list of strings.

+

plot subcommand (Python: gget.cbio_plot)

+

Plot cancer genomics heatmaps using data from cBioPortal. +Return format: PNG (command-line and Python)

+

Required arguments
+-s --study_ids
+Space-separated list of cBioPortal study IDs, e.g. msk_impact_2017 egc_msk_2023.

+

-g --genes
+Space-separated list of gene names or Ensembl IDs, e.g. NOTCH3 ENSG00000108375.

+

Optional arguments
+-st --stratification
+Column to stratify the data by. Default: tissue.
+Options:

+
    +
  • tissue
  • +
  • cancer_type
  • +
  • cancer_type_detailed
  • +
  • study_id
  • +
  • sample
  • +
+

-vt --variation_type
+Type of variation to plot. Default: mutation_occurrences.
+Options:

+
    +
  • mutation_occurrences
  • +
  • cna_nonbinary (Note: stratification must be 'sample' for this option)
  • +
  • sv_occurrences
  • +
  • cna_occurrences
  • +
  • Consequence (Note: stratification must be 'sample' for this option)
  • +
+

-f --filter
+Filter the data by a specific value in a specific column, e.g. study_id:msk_impact_2017
+Python: filter=(column, value)

+

-dd --data_dir
+Directory to store data files. Default: ./gget_cbio_cache.

+

-fd --figure_dir
+Directory to output figures. Default: ./gget_cbio_figures.

+

-fn --filename
+Filename for the output figure, relative to figure_dir. Default: auto-generated
+Python: figure_filename

+

-t --title
+Title for the output figure. Default: auto-generated
+Python: figure_title

+

-dpi --dpi
+DPI of the output figure. Default: 100.

+

Flags

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

-nc --no_confirm
+Command-line only. Skip download confirmation prompts.
+Python: Use confirm_download=True to enable download confirmation prompts.

+

-sh --show
+Show the plot in a window (automatic in Jupyter notebooks).

+

Examples

+

Find all cBioPortal studies with cancer types matching specific keywords:

+
gget cbio search esophag ovary ovarian
+
+
# Python
+import gget
+gget.cbio_search(['esophag', 'ovary', 'ovarian'])
+
+

→ Returns a list of studies with cancer types matching the keywords esophag, ovary, or ovarian.

+
['egc_tmucih_2015', 'egc_msk_2017', ..., 'msk_spectrum_tme_2022']
+
+



+

Plot a heatmap of mutation occurrences for specific genes in a specific study:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st tissue \
+    -vt mutation_occurrences \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='tissue',
+    variation_type='mutation_occurrences',
+    dpi=200
+)
+
+

→ Saves a heatmap of mutation occurrences for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_tissue.png.

+

Heatmap

+



+

Plot a heatmap of mutation types for specific genes in a specific study:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    dpi=200,
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_sample.png.

+

Heatmap

+



+

Plot a heatmap of mutation types for specific genes in a specific study, filtering by tissue:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -f tissue:intestine \
+    -dpi 200 \
+    -y
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    filter=('tissue', 'intestine'),
+    dpi=200,
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, to ./gget_cbio_figures/Heatmap_sample_intestine.png.

+

Heatmap

+



+

Plot a heatmap with a custom title and filename:

+
gget cbio plot \
+    -s msk_impact_2017 \
+    -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \
+    -st sample \
+    -vt Consequence \
+    -f tissue:intestine \
+    -dpi 200 \
+    -y \
+    -t "Intestinal Mutations" \
+    -fn intestinal_mutations.png
+
+
# Python
+import gget
+gget.cbio_plot(
+    ['msk_impact_2017'],
+    ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'],
+    stratification='sample',
+    variation_type='Consequence',
+    filter=('tissue', 'intestine'),
+    dpi=200,
+    figure_title='Intestinal Mutations',
+    figure_filename='intestinal_mutations.png'
+)
+
+

→ Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, with the title "Intestinal Mutations" to ./gget_cbio_figures/intestinal_mutations.png.

+

Heatmap

+

More examples

+

References

+

If you use gget cbio in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

    +
  • +
  • +

    Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

    +
  • +
  • +

    de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

    +
  • +
  • +

    Please also cite the source of the data if you are using a publicly available dataset.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cellxgene 🍱

+

Query data from CZ CELLxGENE Discover using the CZ CELLxGENE Discover Census. CZ CELLxGENE Discover provides ready-to-use single-cell RNA sequencing count matrices for certain tissues/diseases/genes/etc.

+

Returns: An AnnData object containing the count matrix and metadata of single-cell RNA sequencing data from the defined tissues/genes/etc.

+

Before using gget cellxgene for the first time, run gget setup cellxgene / gget.setup("cellxgene") once (also see gget setup).

+

Optional arguments
+-s --species
+Choice of 'homo_sapiens' or 'mus_musculus'. Default: 'homo_sapiens'.

+

-g --gene
+Str or list of gene name(s) or Ensembl ID(s). Default: None.
+NOTE: Use -e / --ensembl (Python: ensembl=True) when providing Ensembl ID(s) instead of gene name(s).
+See https://cellxgene.cziscience.com/gene-expression for examples of available genes.

+

-cv --census_version
+Str defining version of Census, e.g. "2023-05-15", or "latest" or "stable". Default: "stable".

+

-cn --column_names
+List of metadata columns to return (stored in AnnData.obs).
+Default: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type']
+For more options, see: https://api.cellxgene.cziscience.com/curation/ui/#/ -> Schemas -> dataset

+

-o --out
+Path to file to save generated AnnData .h5ad file (or .csv with -mo / --meta_only).
+Required when using from command line!

+

Flags
+-e --ensembl
+Use when genes are provided as Ensembl IDs instead of gene names.

+

-mo --meta_only
+Only returns metadata data frame (corresponds to AnnData.obs).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Optional arguments corresponding to CZ CELLxGENE Discover metadata attributes
+--tissue
+Str or list of tissue(s), e.g. ['lung', 'blood']. Default: None.
+See https://cellxgene.cziscience.com/gene-expression for examples of available tissues.

+

--cell_type
+Str or list of cell type (s), e.g. ['mucus secreting cell', 'neuroendocrine cell']. Default: None.
+See https://cellxgene.cziscience.com/gene-expression and select a tissue to see examples of available cell types.

+

--development_stage
+Str or list of development stage(s). Default: None.

+

--disease
+Str or list of disease(s). Default: None.

+

--sex
+Str or list of sex(es), e.g. 'female'. Default: None.

+

--dataset_id
+Str or list of CELLxGENE dataset ID(s). Default: None.

+

--tissue_general_ontology_term_id
+Str or list of high-level tissue UBERON ID(s). Default: None.
+Tissue labels and their corresponding UBERON IDs are listed here.

+

--tissue_general
+Str or list of high-level tissue label(s). Default: None.
+Tissue labels and their corresponding UBERON IDs are listed here.

+

--tissue_ontology_term_id
+Str or list of tissue ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--assay_ontology_term_id
+Str or list of assay ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--assay
+Str or list of assay(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--cell_type_ontology_term_id
+Str or list of cell type ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--development_stage_ontology_term_id
+Str or list of development stage ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--disease_ontology_term_id
+Str or list of disease ontology term ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--donor_id
+Str or list of donor ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--self_reported_ethnicity_ontology_term_id
+Str or list of self-reported ethnicity ontology ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--self_reported_ethnicity
+Str or list of self-reported ethnicity as defined in the CELLxGENE dataset schema. Default: None.

+

--sex_ontology_term_id
+Str or list of sex ontology ID(s) as defined in the CELLxGENE dataset schema. Default: None.

+

--suspension_type
+Str or list of suspension type(s) as defined in the CELLxGENE dataset schema. Default: None.

+

Examples

+
gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad
+
+
# Python
+adata = gget.cellxgene(
+    gene = ["ACE2", "ABCA1", "SLC5A1"],
+    tissue = "lung",
+    cell_type = ["mucus secreting cell", "neuroendocrine cell"]
+)
+adata
+
+

→ Returns an AnnData object containing the scRNAseq ACE2, ABCA1, and SLC5A1 count matrix of 3322 human lung mucus secreting and neuroendocrine cells from CZ CELLxGENE Discover and their corresponding metadata.

+



+

Fetch metadata (corresponds to AnnData.obs) only:

+
gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv
+
+
# Python
+df = gget.cellxgene(
+    meta_only = True,
+    gene = "ENSMUSG00000015405",
+    ensembl = True,
+    tissue = "lung",  
+    species = "mus_musculus"
+)
+df
+
+

→ Returns only the metadata from ENSMUSG00000015405 (ACE2) expression datasets corresponding to mouse lung cells.

+

Also see: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html

+

References

+

If you use gget cellxgene in a publication, please cite the following articles:

+ +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget cosmic 🪐

+

Search for genes, mutations, and other factors associated with cancer using the COSMIC (Catalogue Of Somatic Mutations In Cancer) database.
+Return format: JSON (command-line) or data frame/CSV (Python) when download_cosmic=False. When download_cosmic=True, downloads the requested database into the specified folder.

+

This module was written in part by @AubakirovArman (information querying) and @josephrich98 (database download).

+

NOTE: License fees apply for the commercial use of COSMIC. You can read more about licensing COSMIC data here.

+

Positional argument (for querying information)
+searchterm
+Search term, which can be a mutation, or gene name (or Ensembl ID), or sample, etc.
+Examples for the searchterm and entitity arguments:

+
+ + + + + + + + + + +
searchtermentitity
EGFRmutations-> Find mutations in the EGFR gene that are associated with cancer
v600emutations-> Find genes for which a v600e mutation is associated with cancer
COSV57014428mutations-> Find mutations associated with this COSMIC mutations ID
EGFRgenes-> Get the number of samples, coding/simple mutations, and fusions observed in COSMIC for EGFR
prostatecancer-> Get number of tested samples and mutations for prostate cancer
prostatetumour_site-> Get number of tested samples, genes, mutations, fusions, etc. with 'prostate' as primary tissue site
ICGCstudies-> Get project code and descriptions for all studies from the ICGC (International Cancer Genome Consortium)
EGFRpubmed-> Find PubMed publications on EGFR and cancer
ICGCsamples-> Get metadata on all samples from the ICGC (International Cancer Genome Consortium)
COSS2907494samples-> Get metadata on this COSMIC sample ID (cancer type, tissue, # analyzed genes, # mutations, etc.)
+
+

NOTE: (Python only) Set to None when downloading COSMIC databases with download_cosmic=True.

+

Optional arguments (for querying information)
+-e --entity
+'mutations' (default), 'genes', 'cancer', 'tumour site', 'studies', 'pubmed', or 'samples'.
+Defines the type of the results to return.

+

-l --limit
+Limits number of hits to return. Default: 100.

+

Flags (for downloading COSMIC databases)
+-d --download_cosmic
+Switches into database download mode.

+

-gm --gget_mutate
+TURNS OFF creation of a modified version of the database for use with gget mutate.
+Python: gget_mutate is True by default. Set gget_mutate=False to disable.

+

Optional arguments (for downloading COSMIC databases)
+-mc --mutation_class
+'cancer' (default), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', or 'cancer_example'
+Type of COSMIC database to download.

+

-cv --cosmic_version
+Version of the COSMIC database. Default: None -> Defaults to latest version.

+

-gv --grch_version
+Version of the human GRCh reference genome the COSMIC database was based on (37 or 38). Default: 37

+

--keep_genome_info +Whether to keep genome information in the modified database for use with gget mutate. Default: False

+

--remove_duplicates +Whether to remove duplicate rows from the modified database for use with gget mutate. Default: False

+

Optional arguments (general)
+-o --out
+Path to the file (or folder when downloading databases with the download_cosmic flag) the results will be saved in, e.g. 'path/to/results.json'.
+Default: None
+-> When download_cosmic=False: Results will be returned to standard out
+-> When download_cosmic=True: Database will be downloaded into current working directory

+

Flags (general)
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Query information

+
gget cosmic EGFR
+
+
# Python
+gget.cosmic("EGFR")
+
+

→ Returns mutations in the EGFR gene that are associated with cancer in the format:

+
+ + + +
GeneSyntaxAlternate IDsCanonical
EGFRc.*2446A>GEGFR c.*2446A>G, EGFR p.?, ...y
EGFRc.(2185_2283)ins(18)EGFR c.(2185_2283)ins(18), EGFR p.?, ...y
. . .. . .. . .. . .
+
+

Downloading COSMIC databases

+
gget cosmic --download_cosmic
+
+
# Python
+gget.cosmic(searchterm=None, download_cosmic=True)
+
+

→ Downloads the COSMIC cancer database of the latest COSMIC release into the current working directory.

+

References

+

If you use gget cosmic in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget diamond 💎

+

Align multiple protein or translated DNA sequences using DIAMOND (DIAMOND is similar to BLAST, but this is a local computation).
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+query
+Sequences (str or list) or path to FASTA file containing sequences to be aligned against the reference.

+

Required arguments
+-ref --reference
+Reference sequences (str or list) or path to FASTA file containing reference sequences.

+

Optional arguments
+-db --diamond_db
+Path to save DIAMOND database created from reference (str).
+Default: None -> Temporary db file will be deleted after alignment or saved in out if out is provided.

+

-s --sensitivity
+Sensitivity of alignment (str). Default: "very-sensitive".
+One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Number of threads used (int). Default: 1.

+

-db --diamond_binary
+Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget.

+

-o --out
+Path to the folder to save results in (str), e.g. "path/to/directory". Default: Standard out; temporary files are deleted.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
# !!! Make sure to list the positional argument first here so it is not added as a reference sequence
+gget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS
+
+
# Python
+gget.diamond(["GGETISAWESQME", "ELVISISALIVE", "LQVEFRANKLIN", "PACHTERLABRQCKS"], reference=["GGETISAWESQMEELVISISALIVELQVEFRANKLIN", "PACHTERLABRQCKS"])
+
+

→ Returns results in JSON (command-line) or data frame/CSV (Python) format:

+
+ + + +
query_accessionsubject_accessionidentity_percentagequery_seq_lengthsubject_seq_lengthlengthmismatchesgap_openingsquery_startquery_endsubject_startsubject_ende-valuebit_score
Seq0Seq0100133713001131132.82e-0930.8
Seq2Seq01001237120011226374.35e-0827.7
Seq3Seq1100151515001151152.01e-1136.2
+
+

More examples

+

References

+

If you use gget diamond in a publication, please cite the following articles:

+ +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget elm 🎭

+

Locally predict Eukaryotic Linear Motifs from an amino acid sequence or UniProt Acc using data from the ELM database.
+Return format: JSON (command-line) or data frame/CSV (Python). This module returns two data frames (or JSON formatted files) (see examples).

+

ELM data can be downloaded & distributed for non-commercial use according to the ELM Software License Agreement.

+

Before using gget elm for the first time, run gget setup elm (bash) / gget.setup("elm") (Python) once (also see gget setup).

+

Positional argument
+sequence
+Amino acid sequence or Uniprot Acc (str).
+When providing a Uniprot Acc, use flag --uniprot (Python: uniprot=True).

+

Optional arguments
+-s --sensitivity
+Sensitivity of DIAMOND alignment (str). Default: "very-sensitive".
+One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Number of threads used in DIAMOND alignment (int). Default: 1.

+

-bin --diamond_binary
+Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget.

+

-o --out
+Path to the folder to save results in (str), e.g. "path/to/directory". Default: Standard out; temporary files are deleted.

+

Flags
+-u --uniprot
+Set to True if sequence is a Uniprot Acc instead of an amino acid sequence.

+

-e --expand
+Expand the information returned in the regex data frame to include the protein names, organisms, and references that the motif was orignally validated on.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Find ELMs in an amino acid sequence:

+
gget setup elm          # Downloads/updates local ELM database
+gget elm -o gget_elm_results LIAQSIGQASFV
+
+
# Python
+gget.setup(“elm”)      # Downloads/updates local ELM database
+ortholog_df, regex_df = gget.elm("LIAQSIGQASFV")
+
+

Find ELMs giving a UniProt Acc as input:

+
gget setup elm          # Downloads/updates local ELM database
+gget elm -o gget_elm_results --uniprot Q02410 -e
+
+
# Python
+gget.setup(“elm”)      # Downloads/updates local ELM database
+ortholog_df, regex_df = gget.elm("Q02410", uniprot=True, expand=True)
+
+

→ Returns two data frames (or JSON formatted dictionaries for command line) containing extensive information about linear motifs associated with orthologous proteins and motifs found in the input sequence directly based on their regex expressions:

+

ortholog_df:

+
+ + +
Ortholog_UniProt_AccProteinNameclass_accessionELMIdentifierFunctionalSiteNameDescriptionOrganism
Q02410APBA1_HUMANELME000357LIG_CaMK_CASK_1CASK CaMK domain binding ligand motifMotif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2.Homo sapiens
Q02410APBA1_HUMANELME000091LIG_PDZ_Class_2PDZ domain ligandsThe C-terminal class 2 PDZ-binding motif is classically represented by a pattern such asHomo sapiens
+
+

regex_df:

+
+ + + + + + +
Instance_accessionELMIdentifierFunctionalSiteNameELMTypeDescriptionInstances (Matched Sequence)Organism
ELME000321CLV_C14_Caspase3-7Caspase cleavage motifCLVCaspase-3 and Caspase-7 cleavage site.ERSDGMus musculus
ELME000102CLV_NRD_NRD_1NRD cleavage siteCLVN-Arg dibasic convertase (NRD/Nardilysin) cleavage site.RRARattus norvegicus
ELME000100CLV_PCSK_PC1ET2_1PCSK cleavage siteCLVNEC1/NEC2 cleavage site.KRDMus musculus
ELME000146CLV_PCSK_SKI1_1PCSK cleavage siteCLVSubtilisin/kexin isozyme-1 (SKI1) cleavage site.RLLTAHomo sapiens
ELME000231DEG_APCC_DBOX_1APCC-binding Destruction motifsDEGAn RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent mannerSRVKLNIVRSaccharomyces cerevisiae S288c
+
+

Tutorials

+

🔗 General gget elm demo

+

🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif

+

🔗 Filter gget elm results based on disordered protein regions

+

References

+

If you use gget elm in a publication, please cite the following articles:

+
    +
  • +

    Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

    +
  • +
  • +

    Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget enrichr 💰

+

Perform an enrichment analysis on a list of genes using Enrichr or modEnrichr.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+genes
+Short names (gene symbols) of genes to perform enrichment analysis on, e.g. PHF14 RBM3 MSL1 PHF21A.
+Alternatively: use flag --ensembl to input a list of Ensembl gene IDs, e.g. ENSG00000106443 ENSG00000102317 ENSG00000188895.

+

Other required arguments
+-db --database
+Database database to use as reference for the enrichment analysis.
+Supports any database listed here under 'Gene-set Library' or one of the following shortcuts:
+'pathway'       (KEGG_2021_Human)
+'transcription'     (ChEA_2016)
+'ontology'      (GO_Biological_Process_2021)
+'diseases_drugs'   (GWAS_Catalog_2019)
+'celltypes'      (PanglaoDB_Augmented_2021)
+'kinase_interactions'  (KEA_2015)

+

NOTE: database shortcuts are not supported for species other than 'human' or 'mouse'. Click on the species databases listed below under species to view a list of databases available for each species.

+

Optional arguments
+-s --species
+Species to use as reference for the enrichment analysis. (Default: human) +Options:

+
+ + + + + + +
SpeciesDatabase list
humanEnrichr
mouseEquivalent to human
flyFlyEnrichr
yeastYeastEnrichr
wormWormEnrichr
fishFishEnrichr
+
+

-bkg_l --background_list
+Short names (gene symbols) of background genes to perform enrichment analysis on, e.g. NSUN3 POLRMT NLRX1.
+Alternatively: use flag --ensembl_background to input a list of Ensembl gene IDs.
+See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis.

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). (Default: Standard out.)
+Python: save=True will save the output in the current working directory.

+

-ko --kegg_out
+Path to the png file the marked KEGG pathway images will be saved in, e.g. path/to/directory/pathway.png. (Default: None)

+

-kr --kegg_rank
+Rank of the KEGG pathway to be plotted. (Default: 1)

+

figsize
+Python only. (width, height) of plot in inches. (Default: (10,10))

+

ax
+Python only. Pass a matplotlib axes object for plot customization. (Default: None)

+

Flags
+-e --ensembl
+Add this flag if genes are given as Ensembl gene IDs.

+

-e_b --ensembl_background
+Add this flag if background_list are given as Ensembl gene IDs.

+

-bkg --background
+If True, use set of > 20,000 default background genes listed here.

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

plot
+Python only. plot=True provides a graphical overview of the first 15 results (default: False).

+

Examples

+
gget enrichr -db ontology ACE2 AGT AGTR1
+
+
# Python
+gget.enrichr(["ACE2", "AGT", "AGTR1"], database="ontology", plot=True)
+
+

→ Returns pathways/functions involving genes ACE2, AGT, and AGTR1 from the GO Biological Process 2021 database. In Python, plot=True returns a graphical overview of the results:

+

alt text

+



+

Use gget enrichr with a background gene list:
+See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis.

+
# Here, we are passing the input genes first (positional argument 'genes'), so they are not added to the background gene list behind the '-bkgr_l' argument
+gget enrichr \
+	PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \
+	-db ChEA_2022 \
+	-bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2
+
+
# Python
+gget.enrichr(
+	genes = [
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", "P2RX7",
+		"LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", "ANAPC16", "TMCC1",
+		"CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", "PLBD2", "LARP7", "TECPR2", 
+		"ZNF302", "CUX1", "MOB2", "CYTH2", "SEC22C", "EIF4E3", "ROBO2",
+		"ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", "ATP5F1"
+	], 
+	database = "ChEA_2022",
+	background_list = [
+		"NSUN3","POLRMT","NLRX1","SFXN5","ZC3H12C","SLC25A39","ARSG",
+		"DEFB29","PCMTD2","ACAA1A","LRRC1","2810432D09RIK","SEPHS2",
+		"SAC3D1","TMLHE","LOC623451","TSR2","PLEKHA7","GYS2","ARHGEF12",
+		"HIBCH","LYRM2","ZBTB44","ENTPD5","RAB11FIP2","LIPT1",
+		"INTU","ANXA13","KLF12","SAT2","GAL3ST2","VAMP8","FKBPL",
+		"AQP11","TRAP1","PMPCB","TM7SF3","RBM39","BRI3","KDR","ZFP748",
+		"NAP1L1","DHRS1","LRRC56","WDR20A","STXBP2","KLF1","UFC1",
+		"CCDC16","9230114K14RIK","RWDD3","2610528K11RIK","ACO1",
+		"CABLES1", "LOC100047214","YARS2","LYPLA1","KALRN","GYK",
+		"ZFP787","ZFP655","RABEPK","ZFP650","4732466D17RIK","EXOSC4",
+		"WDR42A","GPHN","2610528J11RIK","1110003E01RIK","MDH1","1200014M14RIK",
+		"AW209491","MUT","1700123L14RIK","2610036D13RIK",
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", 
+		"P2RX7", "LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", 
+		"ANAPC16", "TMCC1","CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", 
+		"PLBD2", "LARP7", "TECPR2", "ZNF302", "CUX1", "MOB2", "CYTH2", 
+		"SEC22C", "EIF4E3", "ROBO2", "ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", 
+		"ATP5F1""COX15","TMEM30A","NSMCE4A","TM2D2","RHBDD3","ATXN2","NFS1",
+		"3110001I20RIK","BC038156","C330002I19RIK","ZFYVE20","POLI","TOMM70A",
+		"LOC100047782","2410012H22RIK","RILP","A230062G08RIK",
+		"PTTG1IP","RAB1","AFAP1L1", "LYRM5","2310026E23RIK",
+		"SLC7A6OS","MAT2B","4932438A13RIK","LRRC8A","SMO","NUPL2"
+	],
+	plot=True
+)
+
+

→ Returns hits of the input gene list given the background gene list from the transcription factor/target library ChEA 2022. In Python, plot=True returns a graphical overview of the results:

+

alt text

+



+

Generate a KEGG pathway image with the genes from the enrichment analysis highlighted:
+This feature is available thanks to a PR by Noriaki Sato.

+
gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1
+
+
# Python
+gget.enrichr(["ZBP1", "IRF3", "RIPK1"], database="pathway", kegg_out="kegg.png", kegg_rank=1)
+
+

→ In addition to the standard gget enrichr output, the kegg_out argument saves an image with the genes from the enrichment analysis highlighted in the KEGG pathway:

+

kegg

+



+

The following example was submitted by Dylan Lawless via PR:
+Use gget enrichr in R and create a similar plot using ggplot.
+NOTE the switch of axes compared to the Python plot.

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+# Perform enrichment analysis on a list of genes
+df <- gget$enrichr(list("ACE2", "AGT", "AGTR1"), database = "ontology")
+
+# Count number of overlapping genes
+df$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric()
+
+# Only keep the top 15 results
+df <- df[1:15, ]
+
+# Plot
+library(ggplot2)
+
+df |>
+	ggplot() +
+	geom_bar(aes(
+		x = -log10(adj_p_val),
+		y = reorder(path_name, -adj_p_val)
+	),
+	stat = "identity",
+  	fill = "lightgrey",
+  	width = 0.5,
+	color = "black") +
+	geom_text(
+		aes(
+			y = path_name,
+			x = (-log10(adj_p_val)),
+			label = overlapping_genes_count
+		),
+		nudge_x = 0.75,
+		show.legend = NA,
+		color = "red"
+	) +
+  	geom_text(
+		aes(
+			y = Inf,
+			x = Inf,
+      			hjust = 1,
+      			vjust = 1,
+			label = "# of overlapping genes"
+		),
+		show.legend = NA,
+		color = "red"
+	) +
+	geom_vline(linetype = "dotted", linewidth = 1, xintercept = -log10(0.05)) +
+	ylab("Pathway name") +
+	xlab("-log10(adjusted P value)")
+
+

Tutorials

+

Using gget enrichr with background genes

+

References

+

If you use gget enrichr in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

    +
  • +
  • +

    Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

    +
  • +
  • +

    Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

    +
  • +
+

If working with non-human/mouse datasets, please also cite:

+
    +
  • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget gpt 💬

+

Generates natural language text based on a given prompt using the OpenAI API's 'openai.ChatCompletion.create' endpoint. +This module, including its source code, documentation and unit tests, were partly written by OpenAI's Chat-GTP3.

+

NOTE:
+OpenAI API calls are only 'free' for the first three months after generating your OpenAI Account (OpenAI provides a $5 credit that expires).
+You can define a hard monthly billing limit (e.g. $1) here.
+See their pricing and FAQ here.
+Get your OpenAI API key here.

+

Returns: A string containing the generated text.

+

Before using gget gpt for the first time, run gget setup gpt / gget.setup("gpt") once (also see gget setup).

+

Positional argument
+prompt
+The input prompt to generate text from (str).

+

api_key
+Your OpenAI API key (str) (get your API key).

+

Optional arguments
+-m --model
+The name of the GPT model to use for generating the text (str). Default is "gpt-3.5-turbo".
+See https://platform.openai.com/docs/models/gpt-4 for more information on the available models.

+

-temp --temperature
+Value between 0 and 2 that controls the level of randomness and creativity in the generated text (float).
+Higher values result in more creative and varied text. Default is 1.

+

-tp --top_p
+Controls the diversity of the generated text as an alternative to sampling with temperature (float).
+Higher values result in more diverse and unexpected text. Default is 1.
+Note: OpenAI recommends altering this or temperature but not both.

+

-s --stop
+A sequence of tokens to mark the end of the generated text (str). Default is None.

+

-mt --max_tokens
+Controls the maximum length of the generated text, in tokens (int). Default is 200.

+

-pp --presence_penalty
+Number between -2.0 and 2.0. Higher values result increase the model's likelihood to talk about new topics (float). Default is 0.

+

-fp --frequency_penalty
+Number between -2.0 and 2.0. Higher values decrease the model's likelihood to repeat the same line verbatim (float). Default is 0.

+

-lb --logit_bias
+A dictionary that specifies a bias towards certain tokens in the generated text (dict). Default is None.

+

-o --out
+If provided, saves the generated text to a file with the specified path (str). Default: Standard out.

+

Example

+
gget gpt "How are you today GPT?" your_api_token
+
+
# Python
+print(gget.gpt("How are you today GPT?", "your_api_token"))
+
+
+Screen Shot 2023-03-18 at 3 42 32 PM +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget info 💡

+

Fetch extensive gene and transcript metadata from Ensembl, UniProt, and NCBI using Ensembl IDs.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+ens_ids
+One or more Ensembl IDs (WormBase and Flybase IDs are also supported).

+

Optional arguments
+-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-n --ncbi
+TURN OFF results from NCBI.
+Python: ncbi=False prevents data retrieval from NCBI (default: True).

+

-u --uniprot
+TURN OFF results from UniProt.
+Python: uniprot=False prevents data retrieval from UniProt (default: True).

+

-pdb --pdb
+INCLUDE PDB IDs in output (might increase runtime).
+Python: pdb=True includes PDB IDs in the results (default: False).

+

-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget info ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.info(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Returns extensive information about each requested Ensembl ID:

+
+ + +
uniprot_idncbi_gene_idprimary_gene_namesynonymsprotein_namesensembl_descriptionuniprot_descriptionncbi_descriptionbiotypecanonical_transcript...
ENSG00000034713P6052011345GABARAPL2[ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2]Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)...GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ...Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein...protein_codingENST00000037243.7...
. . .. . .. . .. . .. . .. . .. . .. . .. . .. . .. . ....
+
+

More examples

+

References

+

If you use gget info in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
  • +

    Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

    +
  • +
  • +

    The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget muscle 🦾

+

Align multiple nucleotide or amino acid sequences to each other using Muscle5.
+Return format: ClustalW formatted standard out or aligned FASTA (.afa).

+

Positional argument
+fasta
+List of sequences or path to FASTA or .txt file containing the nucleotide or amino acid sequences to be aligned.

+

Optional arguments
+-o --out
+Path to the aligned FASTA file the results will be saved in, e.g. path/to/directory/results.afa. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-s5 --super5
+Aligns input using the Super5 algorithm instead of the Parallel Perturbed Probcons (PPP) algorithm to decrease time and memory.
+Use for large inputs (a few hundred sequences).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+
# Python
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+
+
gget muscle fasta.fa
+
+
# Python
+gget.muscle("fasta.fa")
+
+

→ Returns an overview of the aligned sequences with ClustalW coloring. (To return an aligned FASTA (.afa) file, use --out argument (or save=True in Jupyter Lab/Google Colab).) In the above example, the 'fasta.fa' includes several sequences to be aligned (e.g. isoforms returned from gget seq).

+

alt text

+

You can also view aligned fasta files returned by gget.muscle using programs like alv, as shown below:

+
# Python
+!pip install biopython
+!pip install alv
+from Bio import AlignIO
+import alv
+
+gget.muscle("fasta.fa", out="fasta_aligned.afa")
+msa = AlignIO.read("fasta_aligned.afa", "fasta")
+alv.view(msa)
+
+

More examples

+

References

+

If you use gget muscle in a publication, please cite the following articles:

+ +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget mutate 🧟

+

Takes in nucleotide sequences and mutations (in standard mutation annotation and returns mutated versions of the input sequences according to the provided mutations.
+Return format: Saves mutated sequences in FASTA format (or returns a list containing the mutated sequences if out=None).

+

This module was written by Joseph Rich.

+

Positional argument
+sequences
+Path to the FASTA file containing the sequences to be mutated, e.g., 'path/to/seqs.fa'.
+Sequence identifiers following the '>' character must correspond to the identifiers in the seq_ID column of mutations.

+

Example format of the FASTA file:

+
>seq1 (or ENSG00000106443)  
+ACTGCGATAGACT  
+>seq2  
+AGATCGCTAG
+
+

Alternatively: Input sequence(s) as a string or list, e.g. 'AGCTAGCT'.

+

NOTE: Only the letters until the first space or dot will be used as sequence identifiers - Version numbers of Ensembl IDs will be ignored.
+NOTE: When the sequences input is a genome fasta file, also see the gtf argument below.

+

Required arguments
+-m --mutations
+Path to the csv or tsv file (e.g., 'path/to/mutations.csv') or data frame (DataFrame object) containing information about the mutations in the following format (the 'notes' and 'mut_ID' columns are optional):

+
+ + + + + +
mutationmut_IDseq_IDnotes
c.2C>Tmut1seq1-> Apply mutation 1 to sequence 1
c.9_13invmut2seq2-> Apply mutation 2 to sequence 2
c.9_13invmut2seq4-> Apply mutation 2 to sequence 4
c.9_13delinsAATmut3seq4-> Apply mutation 3 to sequence 4
.........
+
+

'mutation' = Column containing the mutations to be performed written in standard mutation annotation
+'mut_ID' = Column containing the identifier for each mutation
+'seq_ID' = Column containing the identifiers of the sequences to be mutated (must correspond to the string following the '>' character in the 'sequences' FASTA file; do NOT include spaces or dots)

+

Alternatively: Input mutation(s) as a string or list, e.g., 'c.2C>T'.
+If a list is provided, the number of mutations must equal the number of input sequences.

+

For use from the terminal (bash): Enclose individual mutation annotations in quotation marks to prevent parsing errors.

+

Optional input-related arguments
+-mc --mut_column
+Name of the column containing the mutations to be performed in mutations. Default: 'mutation'.

+

-sic --seq_id_column
+Name of the column containing the IDs of the sequences to be mutated in mutations. Default: 'seq_ID'.

+

-mic --mut_id_column
+Name of the column containing the IDs of each mutation in mutations. Default: Same as mut_column.

+

-gtf --gtf
+Path to a .gtf file. When providing a genome fasta file as input for 'sequences', you can provide a .gtf file here and the input sequences will be defined according to the transcript boundaries, e.g. 'path/to/genome_annotation.gtf'. Default: None

+

-gtic --gtf_transcript_id_column
+Column name in the input mutations file containing the transcript ID. In this case, column seq_id_column should contain the chromosome number.
+Required when gtf is provided. Default: None

+

Optional mutant sequence generation/filtering arguments
+-k --k
+Length of sequences flanking the mutation. Default: 30.
+If k > total length of the sequence, the entire sequence will be kept.

+

-msl --min_seq_len
+Minimum length of the mutant output sequence, e.g. 100. Mutant sequences smaller than this will be dropped. Default: None

+

-ma --max_ambiguous
+Maximum number of 'N' (or 'n') characters allowed in the output sequence, e.g. 10. Default: None (no ambiguous character filter will be applied)

+

Optional mutant sequence generation/filtering flags
+-ofr --optimize_flanking_regions
+Removes nucleotides from either end of the mutant sequence to ensure (when possible) that the mutant sequence does not contain any k-mers also found in the wildtype/input sequence.

+

-rswk --remove_seqs_with_wt_kmers
+Removes output sequences where at least one k-mer is also present in the wildtype/input sequence in the same region.
+When used with --optimize_flanking_regions, only sequences for which a wildtype k-mer is still present after optimization will be removed.

+

-mio --merge_identical_off
+Do not merge identical mutant sequences in the output (by default, identical sequences will be merged by concatenating the sequence headers for all identical sequences).

+

Optional arguments to generate additional output
+This output is activated using the --update_df flag and will be stored in a copy of the mutations DataFrame.

+

-udf_o --update_df_out
+Path to output csv file containing the updated DataFrame, e.g. 'path/to/mutations_updated.csv'. Only valid when used with --update_df.
+Default: None -> the new csv file will be saved in the same directory as the mutations DataFrame with appendix '_updated'

+

-ts --translate_start
+(int or str) The position in the input nucleotide sequence to start translating, e.g. 5. If a string is provided, it should correspond to a column name in mutations containing the open reading frame start positions for each sequence/mutation. Only valid when used with --translate.
+Default: translates from the beginning of each sequence

+

-te --translate_end
+(int or str) The position in the input nucleotide sequence to end translating, e.g. 35. If a string is provided, it should correspond to a column name in mutations containing the open reading frame end positions for each sequence/mutation. Only valid when used with --translate.
+Default: translates until the end of each sequence

+

Optional flags to modify additional output
+-udf --update_df
+Updates the input mutations DataFrame to include additional columns with the mutation type, wildtype nucleotide sequence, and mutant nucleotide sequence (only valid if mutations is a .csv or .tsv file).

+

-sfs --store_full_sequences
+Includes the complete wildtype and mutant sequences in the updated mutations DataFrame (not just the sub-sequence with k-length flanks). Only valid when used with --update_df.

+

-tr --translate
+Adds additional columns to the updated mutations DataFrame containing the wildtype and mutant amino acid sequences. Only valid when used with --store_full_sequences.

+

Optional general arguments
+-o --out
+Path to output FASTA file containing the mutated sequences, e.g., 'path/to/output_fasta.fa'.
+Default: None -> returns a list of the mutated sequences to standard out.
+The identifiers (following the '>') of the mutated sequences in the output FASTA will be '>[seq_ID]_[mut_ID]'.

+

Optional general flags
+-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget mutate ATCGCTAAGCT -m 'c.4G>T'
+
+
# Python
+gget.mutate("ATCGCTAAGCT", "c.4G>T")
+
+

→ Returns ATCTCTAAGCT.

+



+

List of sequences with a mutation for each sequence provided in a list:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], ["c.4G>T", "c.1_3inv"], out="mut_fasta.fa")
+
+

→ Saves 'mut_fasta.fa' file containing:

+
>seq1_mut1  
+ATCTCTAAGCT  
+>seq2_mut2  
+GATCTA
+
+



+

One mutation applied to several sequences with adjusted k:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], "c.1_3inv", k=3)
+
+

→ Returns ['CTAGCT', 'GATCTA'].

+



+

Add mutations to an entire genome with extended output
+Main input:

+
    +
  • mutation information as a mutations CSV (by having seq_id_column contain chromosome information, and mut_column contain mutation information with respect to genome coordinates)
  • +
  • the genome as the sequences file
  • +
+

Since we are passing the path to a gtf file to the gtf argument, transcript boundaries will be respected (the genome will be split into transcripts). gtf_transcript_id_column specifies the name of the column in mutations containing the transcript IDs corresponding to the transcript IDs in the gtf file.

+

The optimize_flanking_regions argument maximizes the length of the resulting mutation-containing sequences while maintaining specificity (no wildtype k-mer will be retained).

+

update_df activates the creation of a new CSV file with updated information about each input and output sequence. This new CSV file will be saved as update_df_out. Since store_full_sequences is activated, this new CSV file will not only contain the output sequences (restricted in size by flanking regiong of size k), but also the complete input and output sequences. This allows us to observe the mutation in the context of the entire sequence. Lastly, we are also adding the translated versions of the complete sequences by adding the with the translate flag, so we can observe how the resulting amino acid sequence is changed. The translate_start and translate_end arguments specify the names of the columns in mutations that contain the start and end positions of the open reading frame (start and end positions for translating the nucleotide sequence to an amino acid sequence), respectively.

+
gget mutate \
+  -m mutations_input.csv \
+  -o mut_fasta.fa \
+  -k 4 \
+  -sic Chromosome \
+  -mic Mutation \
+  -gtf genome_annotation.gtf \
+  -gtic Ensembl_Transcript_ID \
+  -ofr \
+  -update_df \
+  -udf_o mutations_updated.csv \
+  -sfs \
+  -tr \
+  -ts Translate_Start \
+  -te Translate_End \
+  genome_reference.fa
+
+
# Python
+gget.mutate(sequences="genome_reference.fa", mutations="mutations_input.csv", out="mut_fasta.fa", k=4, seq_id_column="Chromosome", mut_column="Mutation", gtf="genome_annotation.gtf", gtf_transcript_id_column="Ensembl_Transcript_ID", optimize_flanking_regions=True, update_df=True, update_df_out="mutations_updated.csv", store_full_sequences=True, translate=True, translate_start="Translate_Start", translate_end="Translate_End")
+
+

→ Takes as input 'mutations_input.csv' file containing:

+
| Chromosome | Mutation          | Ensembl_Transcript_ID  | Translate_Start | Translate_End |
+|------------|-------------------|------------------------|-----------------|---------------|
+| 1          | g.224411A>C       | ENST00000193812        | 0               | 100           |
+| 8          | g.25111del        | ENST00000174411        | 0               | 294           |
+| X          | g.1011_1012insAA  | ENST00000421914        | 9               | 1211          |
+
+

→ Saves 'mut_fasta.fa' file containing:

+
>1:g.224411A>C  
+TGCTCTGCT  
+>8:g.25111del  
+GAGTCGAT
+>X:g.1011_1012insAA
+TTAGAACTT
+
+

→ Saves 'mutations_updated.csv' file containing:

+

+| Chromosome | Mutation          | Ensembl_Transcript_ID  | mutation_type | wt_sequence | mutant_sequence | wt_sequence_full  | mutant_sequence_full | wt_sequence_aa_full | mutant_sequence_aa_full |
+|------------|-------------------|------------------------|---------------|-------------|-----------------|-------------------|----------------------|---------------------|-------------------------|
+| 1          | g.224411A>C       | ENSMUST00000193812     | Substitution  | TGCTATGCT   | TGCTCTGCT       | ...TGCTATGCT...   | ...TGCTCTGCT...      | ...CYA...           | ...CSA...               |
+| 8          | g.25111del        | ENST00000174411        | Deletion      | GAGTCCGAT   | GAGTCGAT        | ...GAGTCCGAT...   | ...GAGTCGAT...       | ...ESD...           | ...ES...                |
+| X          | g.1011_1012insAA  | ENST00000421914        | Insertion     | TTAGCTT     | TTAGAACTT       | ...TTAGCTT...     | ...TTAGAACTT...      | ...A...             | ...EL...                |
+
+
+

References

+

If you use gget mutate in a publication, please cite the following articles:

+ +
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget opentargets 🎯

+

Fetch associated diseases or drugs from OpenTargets using Ensembl IDs.
+Return format: JSON/CSV (command-line) or data frame (Python).

+

This module was written by Sam Wagenaar.

+

Positional argument
+ens_id
+Ensembl gene ID, e.g ENSG00000169194.

+

Optional arguments
+-r --resource
+Defines the type of information to return in the output. Default: 'diseases'.
+Possible resources are:

+
+ + + + + + + +
ResourceReturn ValueValid FiltersSources
diseasesAssociated diseasesNoneVarious:etc.
drugsAssociated drugsdisease_idChEMBL
tractabilityTractability dataNoneOpen Targets
pharmacogeneticsPharmacogenetic responsesdrug_idPharmGKB
expressionGene expression data (by tissues, organs, and anatomical systems)tissue_id
anatomical_system
organ
depmapDepMap gene→disease-effect data.tissue_idDepMap Portal
interactionsProtein⇄protein interactionsprotein_a_id
protein_b_id
gene_b_id
+
+

-l --limit
+Limit the number of results, e.g 10. Default: No limit.
+Note: Not compatible with the tractability and depmap resources.

+

-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Optional filter arguments

+

-fd --filter_disease disease_id
+Filter by disease ID, e.g. 'EFO_0000274'. Only valid for the drugs resource.

+

-fc --filter_drug drug_id
+Filter by drug ID, e.g. 'CHEMBL1743081'. Only valid for the pharmacogenetics resource.

+

-ft --filter_tissue tissue_id
+Filter by tissue ID, e.g. 'UBERON_0000473'. Only valid for the expression and depmap resources.

+

-fa --filter_anat_sys
+Filter by anatomical system, e.g. 'nervous system'. Only valid for the expression resource.

+

-fo --filter_organ anatomical_system
+Filter by organ, e.g. 'brain'. Only valid for the expression resource.

+

-fpa --filter_protein_a protein_a_id
+Filter by the protein ID of the first protein in the interaction, e.g. 'ENSP00000304915'. Only valid for the interactions resource.

+

-fpb --filter_protein_b protein_b_id
+Filter by the protein ID of the second protein in the interaction, e.g. 'ENSP00000379111'. Only valid for the interactions resource.

+

-fgb --filter_gene_b gene_b_id
+Filter by the gene ID of the second protein in the interaction, e.g. 'ENSG00000077238'. Only valid for the interactions resource.

+

filters
+Python only. A dictionary of filters, e.g.

+
{'disease_id': ['EFO_0000274', 'HP_0000964']}
+
+

filter_mode
+Python only. filter_mode='or' combines filters of different IDs with OR logic. +filter_mode='and' combines filters of different IDs with AND logic (default).

+

Flags
+-csv --csv
+Command-line only. Returns the output in CSV format, instead of JSON format. +Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

-or --or
+Command-line only. Filters are combined with OR logic. Default: AND logic.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Examples

+

Get associated diseases for a specific gene:

+
gget opentargets ENSG00000169194 -r diseases -l 1
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='diseases', limit=1)
+
+

→ Returns the top disease associated with the gene ENSG00000169194.

+
+ +
idnamedescriptionscore
EFO_0000274atopic eczemaA chronic inflammatory genetically determined disease of the skin ...0.66364347241831
+
+



+

Get associated drugs for a specific gene:

+
gget opentargets ENSG00000169194 -r drugs -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='drugs', limit=2)
+
+

→ Returns the top 2 drugs associated with the gene ENSG00000169194.

+
+ + +
idnametypeaction_mechanismdescriptionsynonymstrade_namesdisease_iddisease_nametrial_phasetrial_statustrial_idsapproved
CHEMBL1743081TRALOKINUMABAntibodyInterleukin‑13 inhibitorAntibody drug with a maximum clinical trial phase of IV ...['CAT-354', 'Tralokinumab']['Adbry', 'Adtralza']EFO_0000274atopic eczema4[]True
CHEMBL4297864CENDAKIMABAntibodyInterleukin‑13 inhibitorAntibody drug with a maximum clinical trial phase of III ...[ABT-308, Abt-308, CC-93538, Cendakimab, RPC-4046][]EFO_0004232eosinophilic esophagitis3Recruiting[NCT04991935]False
+
+

Note: Returned trial_ids are ClinicalTrials.gov identifiers

+



+

Get tractability data for a specific gene:

+
gget opentargets ENSG00000169194 -r tractability
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='tractability')
+
+

→ Returns tractability data for the gene ENSG00000169194.

+
+ + + + + +
labelmodality
High-Quality PocketSmall molecule
Approved DrugAntibody
GO CC high confAntibody
UniProt loc med confAntibody
UniProt SigP or TMHMMAntibody
+
+



+

Get pharmacogenetic responses for a specific gene:

+
gget opentargets ENSG00000169194 -r pharmacogenetics -l 1
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='pharmacogenetics', limit=1)
+
+

→ Returns pharmacogenetic responses for the gene ENSG00000169194.

+
+ +
rs_idgenotype_idgenotypevariant_consequence_idvariant_consequence_labeldrugsphenotypegenotype_annotationresponse_categorydirect_targetevidence_levelsourceliterature
rs12956865_132660151_T_T,TTTSO:0002073no_sequence_alteration    id        name
0  None  hepatitis vaccines
increased risk for non‑immune response to the hepatitis B vaccinePatients with the TT genotype may be at increased risk for non-immune response to the hepatitis B vaccine...efficacyFalse3pharmgkb[21111021]
+
+

Note: Returned literature ids are Europe PMC identifiers

+



+

Get tissues where a gene is most expressed:

+
gget opentargets ENSG00000169194 -r expression -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='expression', limit=2)
+
+

→ Returns the top 2 tissues where the gene ENSG00000169194 is most expressed.

+
+ + +
tissue_idtissue_namerna_zscorerna_valuerna_unitrna_levelanatomical_systemsorgans
UBERON_0000473testis510263[reproductive system][reproductive organ, reproductive structure]
CL_0000542EBV‑transformed lymphocyte1542[hemolymphoid system, immune system, lymphoid system][immune organ]
+
+



+

Get DepMap gene-disease effect data for a specific gene:

+
gget opentargets ENSG00000169194 -r depmap
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='depmap')
+
+

→ Returns DepMap gene-disease effect data for the gene ENSG00000169194.

+
+ +
depmap_idexpressioneffecttissue_idtissue_namecell_line_namedisease_cell_line_iddisease_namemutation
ACH‑0015320.1763230.054950UBERON_0002113kidneyJMU-RTK-2NoneRhabdoid CancerNone
+
+



+

Get protein-protein interactions for a specific gene:

+
gget opentargets ENSG00000169194 -r interactions -l 2
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='interactions', limit=2)
+
+

→ Returns the top 2 protein-protein interactions for the gene ENSG00000169194.

+
+ + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000379111ENSG00000077238IL4Runspecified role9606
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000360730ENSG00000131724IL13RA1unspecified role9606
+
+



+

Get protein-protein interactions for a specific gene, filtering by protein and gene IDs:

+
gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238
+
+
# Python
+import gget
+gget.opentargets('ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': 'ENSG00000077238'})
+
+

→ Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 and the second gene is ENSG00000077238.

+
+ + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
None3reactomeP35225ENSG00000169194IL13unspecified role9606P24394ENSG00000077238IL4Runspecified role9606
None2signorP35225ENSG00000169194IL13regulator9606P24394ENSG00000077238IL4Rregulator target9606
+
+



+

Get protein-protein interactions for a specific gene, filtering by protein or gene IDs:

+
gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 ENSG00000111537 --or -l 5
+
+
# Python
+import gget
+gget.opentargets(
+    'ENSG00000169194',
+    resource='interactions',
+    filters={'protein_a_id': 'P35225', 'gene_b_id': ['ENSG00000077238', 'ENSG00000111537']},
+    filter_mode='or',
+    limit=5
+)
+
+

→ Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 or the second gene is either ENSG00000077238 or ENSG00000111537.

+
+ + + + + +
evidence_scoreevidence_countsource_dbprotein_a_idgene_a_idgene_a_symbolrole_ataxon_aprotein_b_idgene_b_idgene_b_symbolrole_btaxon_b
0.9993stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000379111ENSG00000077238IL4Runspecified role9606
0.9612stringENSP00000304915ENSG00000169194IL13unspecified role9606ENSP00000229135ENSG00000111537IFNGunspecified role9606
0.8009intactP35225ENSG00000169194IL13unspecified role9606Q14627ENSG00000123496IL13RA2unspecified role9606
0.7406intactP35225ENSG00000169194IL13unspecified role9606P78552ENSG00000131724IL13RA1unspecified role9606
0.4001intactP35225ENSG00000169194IL13unspecified role9606Q86XT9ENSG00000149932TMEM219stimulator9606
+
+

More examples

+

References

+

If you use gget opentargets in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget pdb 🔮

+

Query RCSB Protein Data Bank (PDB) for the protein structure/metadata of a given PDB ID.
+Return format: Resource 'pdb' is returned in PDB format. All other resources are returned in JSON format.

+

Positional argument
+pdb_id
+PDB ID to be queried, e.g. '7S7U'.

+

Optional arguments
+-r --resource
+Defines type of information to be returned. One of the following:
+'pdb': Returns the protein structure in PDB format (default).
+'entry': Information about PDB structures at the top level of PDB structure hierarchical data organization.
+'pubmed': Get PubMed annotations (data integrated from PubMed) for a given entry's primary citation.
+'assembly': Information about PDB structures at the quaternary structure level.
+'branched_entity': Get branched entity description (define entity ID as 'identifier').
+'nonpolymer_entity': Get non-polymer entity data (define entity ID as 'identifier').
+'polymer_entity': Get polymer entity data (define entity ID as 'identifier').
+'uniprot': Get UniProt annotations for a given macromolecular entity (define entity ID as 'identifier').
+'branched_entity_instance': Get branched entity instance description (define chain ID as 'identifier').
+'polymer_entity_instance': Get polymer entity instance (a.k.a chain) data (define chain ID as 'identifier').
+'nonpolymer_entity_instance': Get non-polymer entity instance description (define chain ID as 'identifier').

+

-i --identifier
+Can be used to define assembly, entity or chain ID (default: None). Assembly/entity IDs are numbers (e.g. 1), and chain IDs are letters (e.g. 'A').

+

-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/7S7U.pdb or path/to/directory/7S7U_entry.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Examples

+
gget pdb 7S7U -o 7S7U.pdb
+
+
# Python
+gget.pdb("7S7U", save=True)
+
+

→ Saves the structure of 7S7U in PDB format as '7S7U.pdb' in the current working directory.

+

Find PDB crystal structures for a comparative analysis of protein structure:

+
# Find PDB IDs associated with an Ensembl ID 
+gget info ENSG00000130234
+
+# Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, 
+# you will likely find more PDB entries by BLASTing the sequence agains the PDB.
+
+# Get the amino acid sequence of a transcript from an Ensembl ID
+gget seq --translate ENSG00000130234 -o gget_seq_results.fa
+
+# BLAST an amino acid sequence to find similar structures in the PDB
+gget blast --database pdbaa gget_seq_results.fa
+
+# Get PDB files from the PDB IDs returned by gget blast for comparative analysis
+gget pdb 7DQA -o 7DQA.pdb
+gget pdb 7CT5 -o 7CT5.pdb
+
+
# Find PDB IDs associated with an Ensembl ID 
+gget.info("ENSG00000130234")
+
+# Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, 
+# you will likely find more PDB entries by BLASTing the sequence agains the PDB.
+
+# Get the amino acid sequence of a transcript from an Ensembl ID
+gget.seq("ENSG00000130234", translate=True, save=True)
+
+# BLAST an amino acid sequence to find similar structures in the PDB
+gget.blast("gget_seq_results.fa", database="pdbaa")
+
+# Get PDB files from the PDB IDs returned by gget blast for comparative analysis
+gget.pdb("7DQA", save=True)
+gget.pdb("7CT5", save=True)
+
+

→ The use case above exemplifies how to find PDB files for comparative analysis of protein structure starting with Ensembl IDs or amino acid sequences. The fetched PDB files can also be compared to predicted structures generated by gget alphafold. PDB files can be viewed interactively in 3D online, or using programs like PyMOL or Blender. To compare two PDB files, you can use this website.

+

More examples

+

References

+

If you use gget pdb in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget ref 📖

+

Fetch FTPs and their respective metadata (or use flag ftp to only return the links) for reference genomes and annotations from Ensembl by species.
+Return format: dictionary/JSON.

+

Positional argument
+species
+Species for which the FTPs will be fetched in the format genus_species, e.g. homo_sapiens.
+Supports all available vertebrate and invertebrate (plants, fungi, protists, and invertebrate metazoa) genomes from Ensembl, except bacteria.
+Note: Not required when using flags --list_species or --list_iv_species.
+Supported shortcuts: 'human', 'mouse', 'human_grch37' (accesses the GRCh37 genome assembly)

+

Optional arguments
+-w --which
+Defines which results to return. Default: 'all' -> Returns all available results.
+Possible entries are one or a combination (as comma-separated list) of the following:
+'gtf' - Returns the annotation (GTF).
+'cdna' - Returns the trancriptome (cDNA).
+'dna' - Returns the genome (DNA).
+'cds' - Returns the coding sequences corresponding to Ensembl genes. (Does not contain UTR or intronic sequence.)
+'cdrna' - Returns transcript sequences corresponding to non-coding RNA genes (ncRNA).
+'pep' - Returns the protein translations of Ensembl genes.

+

-r --release
+Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: latest Ensembl release.

+

-od --out_dir
+Path to the directory where the FTPs will be saved, e.g. path/to/directory/. Default: Current working directory.

+

-o --out
+Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-l --list_species
+Lists all available vertebrate species. (Python: combine with species=None.)

+

-liv --list_iv_species
+Lists all available invertebrate species. (Python: combine with species=None.)

+

-ftp --ftp
+Returns only the requested FTP links.

+

-d --download
+Command-line only. Downloads the requested FTPs to the directory specified by out_dir (requires curl to be installed).

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+

Use gget ref in combination with kallisto | bustools to build a reference index:

+
kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens)
+
+

→ kb ref builds a reference index using the latest DNA and GTF files of species Homo sapiens passed to it by gget ref.

+



+

List all available genomes from Ensembl release 103:

+
gget ref --list_species -r 103
+
+
# Python
+gget.ref(species=None, list_species=True, release=103)
+
+

→ Returns a list with all available genomes (checks if GTF and FASTAs are available) from Ensembl release 103.
+(If no release is specified, gget ref will always return information from the latest Ensembl release.)

+



+

Get the genome reference for a specific species:

+
gget ref -w gtf,dna homo_sapiens
+
+
# Python
+gget.ref("homo_sapiens", which=["gtf", "dna"])
+
+

→ Returns a JSON with the latest human GTF and FASTA FTPs, and their respective metadata, in the format:

+
{
+    "homo_sapiens": {
+        "annotation_gtf": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz",
+            "ensembl_release": 106,
+            "release_date": "28-Feb-2022",
+            "release_time": "23:27",
+            "bytes": "51379459"
+        },
+        "genome_dna": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz",
+            "ensembl_release": 106,
+            "release_date": "21-Feb-2022",
+            "release_time": "09:35",
+            "bytes": "881211416"
+        }
+    }
+}
+
+

More examples

+

References

+

If you use gget ref in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget search 🔎

+

Fetch genes and transcripts from Ensembl using free-form search terms.
+Results are matched based on the "gene name" and "description" sections in the Ensembl database. gget version >= 0.27.9 also includes results that match the Ensembl "synonym" section.
+Return format: JSON (command-line) or data frame/CSV (Python).

+

Positional argument
+searchwords
+One or more free form search words, e.g. gaba nmda. (Note: Search is not case-sensitive.)

+

Other required arguments
+-s --species
+Species or database to be searched.
+A species can be passed in the format 'genus_species', e.g. 'homo_sapiens' or 'arabidopsis_thaliana'.
+To pass a specific database, pass the name of the CORE database, e.g. 'mus_musculus_dba2j_core_105_1'.

+

All available core databases can be found here:
+Vertebrates: http://ftp.ensembl.org/pub/current/mysql/
+Invertebrates: http://ftp.ensemblgenomes.org/pub/current/ + select kingdom + go to mysql/

+

Supported shortcuts: 'human', 'mouse'

+

Optional arguments
+-r --release
+Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: None -> latest Ensembl release is used.

+

Note: The release argument does not apply to invertebrate species (you can pass a specific core database (which includes a release number) to the species argument instead). For invertebrate species, Ensembl only stores databases from 10 releases prior to the current release.

+

This argument is overwritten if a specific database (which includes a release number) is passed to the species argument.

+

-t --id_type
+'gene' (default) or 'transcript'
+Returns genes or transcripts, respectively.

+

-ao --andor
+'or' (default) or 'and'
+'or': Returns all genes that INCLUDE AT LEAST ONE of the searchwords in their name/description.
+'and': Returns only genes that INCLUDE ALL of the searchwords in their name/description.

+

-l --limit
+Limits the number of search results, e.g. 10. Default: None.

+

-o --out
+Path to the csv the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-csv --csv
+Command-line only. Returns results in CSV format.
+Python: Use json=True to return output in JSON format.

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

wrap_text
+Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).

+

Example

+
gget search -s human gaba gamma-aminobutyric
+
+
# Python
+gget.search(["gaba", "gamma-aminobutyric"], "homo_sapiens")
+
+

→ Returns all genes that contain at least one of the search words in their name or Ensembl/external reference description:

+
+ + +
ensembl_idgene_nameensembl_descriptionext_ref_descriptionbiotypeurl
ENSG00000034713GABARAPL2GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]GABA type A receptor associated protein like 2protein_codinghttps://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713
. . .. . .. . .. . .. . .. . .
+
+

More examples

+

References

+

If you use gget search in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

    +
  • +
+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget setup 🔧

+

Function to install/download third-party dependencies for a specified gget module.

+

Positional argument
+module
+gget module for which dependencies should be installed.

+

Optional arguments
+-o --out
+Path to the folder downloaded files will be saved in (currently only applies to module = 'elm').
+NOTE: Do NOT use this argument when downloading the files for use with gget.elm.
+Default: None (downloaded files are saved inside the gget package installation folder).

+

Flags
+-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Example

+
gget setup alphafold
+
+
# Python
+gget.setup("alphafold")
+
+

→ Installs all (modified) third-party dependencies and downloads model parameters (~4GB) required to run gget alphafold.

+
+

Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag.

+
+

gget seq 🧬

+

Fetch nucleotide or amino acid sequence(s) of a gene (and all its isoforms) or a transcript by Ensembl ID.
+Return format: FASTA.

+

Positional argument
+ens_ids
+One or more Ensembl IDs.

+

Optional arguments
+-o --out
+Path to the file the results will be saved in, e.g. path/to/directory/results.fa. Default: Standard out.
+Python: save=True will save the output in the current working directory.

+

Flags
+-t --translate
+Returns amino acid (instead of nucleotide) sequences.
+Nucleotide sequences are fetched from Ensembl.
+Amino acid sequences are fetched from UniProt.

+

-iso --isoforms
+Returns the sequences of all known transcripts.
+(Only for gene IDs.)

+

-q --quiet
+Command-line only. Prevents progress information from being displayed.
+Python: Use verbose=False to prevent progress information from being displayed.

+

Examples

+
gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.seq(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Returns the nucleotide sequences of ENSG00000034713, ENSG00000104853, and ENSG00000170296 in FASTA format.

+
gget seq -t -iso ENSG00000034713
+
+
# Python
+gget.seq("ENSG00000034713", translate=True, isoforms=True)
+
+

→ Returns the amino acid sequences of all known transcripts of ENSG00000034713 in FASTA format.

+

More examples

+

References

+

If you use gget seq in a publication, please cite the following articles:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606

    +
  • +
  • +

    The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

    +
  • +
+

Welcome to gget's contributing guide

+

Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the gget repo. ✨

+

Read our Code of Conduct to keep our community approachable and respectable.

+

In this guide you will get an overview of the contribution workflow from opening an issue or creating a pull request (PR) to reviewing and merging a PR.

+

Issues

+

Create a new issue

+

If you spot a problem with gget or you have an idea for a new feature, check if an issue already exists. If a related issue doesn't exist, you can open a new issue using the relevant issue form.

+

Solve an issue

+

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. If you find an issue to work on, you are welcome to open a PR with a fix.

+

Contribute through pull requests

+

Getting started

+
    +
  1. Fork the repository.
  2. +
+
    +
  • +

    Using GitHub Desktop:

    + +
  • +
  • +

    Using the command line:

    +
      +
    • Fork the repo so that you can make your changes without affecting the original project until you're ready to merge them.
    • +
    +
  • +
+
    +
  1. Create a working branch and start with your changes!
  2. +
+

Commit your update

+

Commit the changes once you are happy with them.

+

‼️ Self-review the following before creating a Pull Request ‼️

+
    +
  1. Review the content for technical accuracy.
  2. +
  3. Copy-edit the changes/comments for grammar, spelling, and adherence to the general style of existing gget code.
  4. +
  5. Format your code using black.
  6. +
  7. Make sure the unit tests pass: +
      +
    • Developer dependencies can be installed with pip install -r dev-requirements.txt
    • +
    • Run existing unit tests from the gget repository root with coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests*
    • +
    +
  8. +
  9. Add new unit tests if applicable: +
      +
    • Arguments and expected results are stored in json files in ./tests/fixtures/
    • +
    • Unit tests can be added to ./tests/test_*.py and will be automatically detected
    • +
    +
  10. +
  11. Make sure the edits are compatible with both the Python and the command line interface +
      +
    • The command line interface and arguments are defined in ./gget/main.py
    • +
    +
  12. +
  13. Add new modules/arguments to the documentation if applicable: +
      +
    • The manual for each module can be edited/added as ./docs/src/*.md
    • +
    +
  14. +
+

If you have any questions, feel free to start a discussion or create an issue as described above.

+

Pull Request

+

When you're finished with the changes, create a pull request, also known as a PR.

+

‼️ Please make all PRs against the dev branch of the gget repository.

+
    +
  • Don't forget to link PR to issue if you are solving one.
  • +
  • Enable the checkbox to allow maintainer edits so the branch can be updated for a merge.
  • +
  • If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.
  • +
+

Once you submit your PR, a gget team member will review your proposal. We may ask questions or request additional information.

+

Your PR is merged!

+

Congratulations! 🎉 The gget team thanks you. ✨

+

Once your PR is merged, your contributions will be publicly visible on the gget repo.

+

Contributor Covenant Code of Conduct

+

Our Pledge

+

We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation.

+

We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community.

+

Our Standards

+

Examples of behavior that contributes to a positive environment for our +community include:

+
    +
  • Demonstrating empathy and kindness toward other people
  • +
  • Being respectful of differing opinions, viewpoints, and experiences
  • +
  • Giving and gracefully accepting constructive feedback
  • +
  • Accepting responsibility and apologizing to those affected by our mistakes, +and learning from the experience
  • +
  • Focusing on what is best not just for us as individuals, but for the +overall community
  • +
+

Examples of unacceptable behavior include:

+
    +
  • The use of sexualized language or imagery, and sexual attention or +advances of any kind
  • +
  • Trolling, insulting or derogatory comments, and personal or political attacks
  • +
  • Public or private harassment
  • +
  • Publishing others' private information, such as a physical or email +address, without their explicit permission
  • +
  • Other conduct which could reasonably be considered inappropriate in a +professional setting
  • +
+

Enforcement Responsibilities

+

Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful.

+

Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate.

+

Scope

+

This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event.

+

Enforcement

+

Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +lpachter@caltech.edu. +All complaints will be reviewed and investigated promptly and fairly.

+

All community leaders are obligated to respect the privacy and security of the +reporter of any incident.

+

Enforcement Guidelines

+

Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct:

+

1. Correction

+

Community Impact: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community.

+

Consequence: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested.

+

2. Warning

+

Community Impact: A violation through a single incident or series +of actions.

+

Consequence: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban.

+

3. Temporary Ban

+

Community Impact: A serious violation of community standards, including +sustained inappropriate behavior.

+

Consequence: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban.

+

4. Permanent Ban

+

Community Impact: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals.

+

Consequence: A permanent ban from any sort of public interaction within +the community.

+

Attribution

+

This Code of Conduct is adapted from the Contributor Covenant, +version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.

+

Community Impact Guidelines were inspired by Mozilla's code of conduct +enforcement ladder.

+

For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations.

+

license

+

Citation

+

If you use gget in a publication, please cite:
+Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

+
    +
  • +

    If using gget alphafold, please also cite:

    + +

    And, if applicable:

    + +
  • +
  • +

    If using gget archs4, please also cite:

    +
      +
    • +

      Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

      +
    • +
    • +

      Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

      +
    • +
    +
  • +
  • +

    If using gget bgee, please also cite:

    +
      +
    • Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793
    • +
    +
  • +
  • +

    If using gget blast, please also cite:

    +
      +
    • Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.
    • +
    +
  • +
  • +

    If using gget blat, please also cite:

    +
      +
    • Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.
    • +
    +
  • +
  • +

    If using gget cbio, please also cite:

    +
      +
    • +

      Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

      +
    • +
    • +

      Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

      +
    • +
    • +

      de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

      +
    • +
    • +

      Please also cite the source of the data if you are using a publicly available dataset.

      +
    • +
    +
  • +
  • +

    If using gget cellxgene, please also cite:

    + +
  • +
  • +

    If using gget cosmic, please also cite:

    +
      +
    • Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.
    • +
    +
  • +
  • +

    If using gget diamond, please also cite:

    + +
  • +
  • +

    If using gget elm, please also cite:

    +
      +
    • +

      Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

      +
    • +
    • +

      Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

      +
    • +
    +
  • +
  • +

    If using gget enrichr, please also cite:

    +
      +
    • +

      Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

      +
    • +
    • +

      Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

      +
    • +
    • +

      Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

      +
    • +
    +

    If working with non-human/mouse datasets, please also cite:

    +
      +
    • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
    • +
    +
  • +
  • +

    If using gget info, please also cite:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
  • +

    If using gget muscle, please also cite:

    + +
  • +
  • +

    If using gget opentargets, please also cite:

    +
      +
    • Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.
    • +
    +
  • +
  • +

    If using gget pdb, please also cite:

    +
      +
    • Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.
    • +
    +
  • +
  • +

    If using gget ref or gget search, please also cite:

    +
      +
    • Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.
    • +
    +
  • +
  • +

    If using gget seq, please also cite:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
+
+

Disclaimer

+

gget is only as accurate as the databases/servers/APIs it queries from. The accuracy or reliability of the data is not guaranteed or warranted in any way and the providers disclaim liability of any kind whatsoever, including, without limitation, liability for quality, performance, merchantability and fitness for a particular purpose arising out of the use, or inability to use the data.

+

pypi version +image +Downloads +Conda +license +status +status +Star on GitHub

+

+

¡Bienvenidos!

+

gget es un programa gratuito de código fuente abierta de Terminal y Python que permite la consulta eficiente de bases de datos genómicas.
+
+gget consiste en un conjunto de módulos separados pero interoperables, cada uno diseñado para facilitar un tipo de consulta de base de datos en una sola línea de código.
+
+Las bases de datos consultadas por gget se actualizan continuamente, lo que a veces cambia su estructura. Los módulos gget se prueban automáticamente cada dos semanas y se actualizan para que coincidan con las nuevas estructuras de la base de datos cuando es necesario. Si encuentra algún problema, actualice a la última versión de gget usando pip install --upgrade gget. Si el problema persiste, informa el problema.
+
+
 Solicitar una nueva función 
+

+

Módulos gget

+

Estos son los módulos principales de gget. Haga clic en cualquier módulo para acceder a la documentación detallada.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gget alphafold
Predecir la estructura 3D de una proteína a partir de una secuencia de aminoácidos.
gget archs4
¿Cuál es la expresión de mi gen en el tejido X?
gget bgee
Encontrar todos los ortólogos de un gen.
gget blast
Realizar un BLAST de una secuencia de nucleótidos o aminoácidos.
gget blat
Encontrar la ubicación genómica de una secuencia de nucleótidos o aminoácidos.
gget cbio
Explorar la expresión de un gen en los cánceres especificados.
gget cellxgene
Obtener matrices de conteo de ARN de células individuales listas para usar para ciertos tejidos/enfermedades/etc.
gget cosmic
Buscar genes, mutaciones y otros factores asociados con ciertos cánceres.
gget diamond
Alinear secuencias de aminoácidos a una referencia.
gget elm
Encontrar dominios y funciones de interacción de proteínas en una secuencia de aminoácidos.
gget enrichr
Verificar si una lista de genes está asociada con un tipo celular específico/ vía/ enfermedad/ etc.
gget info
Recuperar toda la información asociada con un ID de Ensembl.
gget muscle
Alinear múltiples secuencias de nucleótidos o aminoácidos entre sí.
gget mutate
Mutar secuencias de nucleótidos según mutaciones específicas.
gget opentargets
Explorar qué enfermedades y medicamentos están asociados con un gen.
gget pdb
Recuperar datos de la Base de Datos de Proteínas (PDB) según un ID de PDB.
gget ref
Obtener genomas de referencia de Ensembl.
gget search
Encontrar IDs de Ensembl asociados con la palabra de búsqueda especificada.
gget seq
Recuperar la secuencia de nucleótidos o aminoácidos de un gen.
+
+

Si usa gget en una publicación, por favor cite*:

+
Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836
+
+

Lea el artículo aquí: https://doi.org/10.1093/bioinformatics/btac836

+

Gracias a Victor Garcia-Ruiz y Anna Karen Orta por su ayuda con la traduccion del sitio web.

+
+ +

✨ ¡Lo más reciente!

+

Versión ≥ 0.28.6 (2 de junio de 2024):

+
    +
  • Nuevo módulo: gget mutate
  • +
  • gget cosmic: Ahora puedes descargar bases de datos completas de COSMIC utilizando el argumento download_cosmic
  • +
  • gget ref: Ahora puede obtener la ensambladura del genoma GRCh27 usando species='human_grch37'
  • +
  • gget search: Ajusta el acceso a los datos humanos a la estructura de la versión 112 de Ensembl (corrige issue 129)
  • +
+

Version ≥ 0.28.5 (May 29, 2024):

+
    +
  • Retirado debido a un error con 'logging' en gget.setup("alphafold") + mutaciones de inversión en gget mutate solo invierten la cadena en lugar de también calcular la hebra complementaria
  • +
+

Versión ≥ 0.28.4 (31 de enero de 2024):

+
    +
  • gget setup: soluciona el error con la ruta del archivo al ejecutar gget.setup("elm") en el sistema operativo Windows.
  • +
+

Versión ≥ 0.28.3 (22 de enero de 2024):

+
    +
  • gget search y gget ref ahora también admiten hongos 🍄, protistas 🌝 y metazoos de invertebrados 🐝 🐜 🐌 🐙 (además de vertebrados y plantas)
  • +
  • Nuevo módulo: gget cosmic
  • +
  • gget enrichr: corrige puntos de dispersión duplicados en el gráfico cuando los nombres de las rutas están duplicados
  • +
  • gget elm: +
      +
    • Se cambió el nombre de la columna de resultados orto 'Ortholog_UniProt_ID' a 'Ortholog_UniProt_Acc' para reflejar correctamente el contenido de la columna, que son accesos de UniProt. 'UniProt ID' se cambió a 'UniProt Acc' en la documentación para todos los módulos gget.
    • +
    • Se cambió el nombre de la columna de resultados ortogonales 'motif_in_query' a 'motif_inside_subject_query_overlap'.
    • +
    • Se agregó información del dominio de interacción a los resultados (nuevas columnas: "InteractionDomainId", "InteractionDomainDescription", "InteractionDomainName").
    • +
    • La cadena de expresiones regulares para coincidencias de expresiones regulares se encapsuló de la siguiente manera: "(?=(regex))" (en lugar de pasar directamente la cadena de expresiones regulares "regex") para permitir capturar todas las apariciones de un motivo cuando la longitud del motivo es variable y hay son repeticiones en la secuencia (https://regex101.com/r/HUWLlZ/1).
    • +
    +
  • +
  • gget setup: utilice el argumento out para especificar un directorio en el que se descargará la base de datos ELM. Completa esta solicitud de función.
  • +
  • gget Diamond: El comando DIAMOND ahora se ejecuta con el indicador --ignore-warnings, lo que permite secuencias de nicho, como secuencias de aminoácidos que solo contienen caracteres de nucleótidos y secuencias repetidas. Esto también es válido para las alineaciones DIAMOND realizadas dentro de gget elm.
  • +
  • Cambio de back-end de gget ref y gget search: la versión actual de Ensembl se obtiene del nuevo archivo de versión en el sitio FTP de Ensembl para evitar errores durante la carga de nuevos lanzamientos.
  • +
  • gget search: +
      +
    • Los resultados del enlace FTP (--ftp) se guardan en formato de archivo txt en lugar de json.
    • +
    • Se corrigieron enlaces URL al resumen de genes de Ensembl para especies con un nombre de subespecie e invertebrados.
    • +
    +
  • +
  • gget ref: +
      +
    • Cambios de back-end para aumentar la velocidad.
    • +
    • Nuevo argumento: list_iv_species para enumerar todas las especies de invertebrados disponibles (se puede combinar con el argumento release para obtener todas las especies disponibles de una liberación específica de Ensembl)
    • +
    +
  • +
+

Versión ≥ 0.28.2 (15 de noviembre de 2023):

+
    +
  • gget info: devuelve un mensaje de error cuando el servidor NCBI falla por un motivo distinto a un error de recuperación (esto es un error en el lado del servidor en lugar de un error con gget)
  • +
  • Reemplace el argumento obsoleto 'texto' para los métodos de tipo find() siempre que se usen con la dependencia BeautifulSoup
  • +
  • gget elm: Elimina instancias de falsos positivos y verdaderos negativos de los resultados devueltos.
  • +
  • gget elm: agrega el argumento expand
  • +
+

Versión ≥ 0.28.0 (5 de noviembre de 2023):

+
    +
  • Documentación actualizada de gget muscle para agregar un tutorial sobre cómo visualizar secuencias con diferentes longitudes de nombres de secuencia + ligero cambio en la visualización devuelta para que sea un poco más sólida ante diferentes nombres de secuencia
  • +
  • gget muscle ahora también permite una lista de secuencias como entrada (como alternativa a proporcionar la ruta a un archivo FASTA)
  • +
  • Permitir filtro de genes faltante para gget cellxgene (corrige error)
  • +
  • gget seq: permite nombres de genes faltantes (correccione [https://github.com/pachterlab/gget/issues/107](https://github.com/pachterlab/gget /números/107))
  • +
  • Nuevos argumentos para gget enrichr: use el argumento kegg_out y kegg_rank para crear una imagen de la vía KEGG con los genes del análisis de enriquecimiento resaltados (gracias a [este PR](https ://github.com/pachterlab/gget/pull/106) por Noriaki Sato)
  • +
  • Nuevos módulos: gget elm y gget Diamond
  • +
+

Versión ≥ 0.27.9 (7 de agosto de 2023):

+
    +
  • Nuevos argumentos para gget enrichr: use el argumento background_list para proporcionar una lista de genes 'background'
  • +
  • gget search ahora también busca sinónimos Ensembl (además de nombres y descripciones de genes) para obtener resultados de búsqueda más completos (gracias a Samuel Klein por la sugerencia)
  • +
+

Versión ≥ 0.27.8 (12 de julio de 2023):

+
    +
  • Nuevo argumento para gget search: especifique la versión de Ensembl desde la cual se obtiene la información con -r --release
  • +
  • Se corrigió un error en gget pdb (este error se introdujo en la versión 0.27.5)
  • +
+

Versión ≥ 0.27.7 (15 de mayo de 2023):

+ +

Versión ≥ 0.27.6 (1 de mayo de 2023) (TIRO debido a problemas con las dependencias -> reemplazada por la versión 0.27.7):

+ +

Versión ≥ 0.27.5 (6 de abril de 2023):

+
    +
  • Se actualizó gget search para que funcione correctamente con la nueva versión de Pandas 2.0.0 (lanzado el 3 de abril de 2023), además de versiones anteriores de Pandas
  • +
  • Se actualizó gget info con nuevos banderas uniprot y ncbi que permiten desactivar los resultados de estas bases de datos de forma independiente para ahorrar tiempo de ejecución (nota: el indicador ensembl_only quedó obsoleto)
  • +
  • Todos los módulos gget ahora tienen una bandera -q / --quiet (para Python: verbose=False) para desactivar la información de progreso
  • +
+

Versión ≥ 0.27.4 (19 de marzo de 2023):

+ +

Versión ≥ 0.27.3 (11 de marzo de 2023):

+
    +
  • gget info excluye los ID de PDB de forma predeterminada para aumentar la velocidad (los resultados de PDB se pueden incluir usando la marca --pdb / pdb=True).
  • +
+

Versión ≥ 0.27.2 (1 de enero de 2023):

+ +

Versión ≥ 0.27.0 (10 de diciembre de 2022):

+
    +
  • Se actualizó gget alphafold para que coincida con los cambios recientes de DeepMind
  • +
  • Número de versión actualizado para que coincida con la edad de el creador de gget siguiendo una larga tradición de laboratorio de Pachter
  • +
+

Versión ≥ 0.3.13 (11 de noviembre de 2022):

+ +

Versión ≥ 0.3.12 (10 de noviembre de 2022):

+
    +
  • gget info ahora también devuelve datos de localización subcelular de UniProt
  • +
  • El nuevo indicador gget info ensembl_only devuelve solo los resultados de Ensembl
  • +
  • Tiempo de ejecución reducido para gget info y gget seq
  • +
+

Versión ≥ 0.3.11 (7 de septiembre de 2022):

+ +

Versión ≥ 0.3.10 (2 de septiembre de 2022):

+ +

Versión ≥ 0.3.9 (25 de agosto de 2022):

+
    +
  • Instrucciones de instalación de openmm actualizadas para gget alphafold
  • +
+

Versión ≥ 0.3.8 (12 de agosto de 2022):

+
    +
  • Se corrigieron los requisitos de versión de mysql-connector-python
  • +
+

Versión ≥ 0.3.7 (9 de agosto de 2022):

+ +

Versión ≥ 0.3.5 (6 de agosto de 2022):

+ +

Versión ≥ 0.2.6 (7 de julio de 2022):

+
    +
  • ¡gget ref ahora admite genomas de plantas! 🌱
  • +
+

Versión ≥ 0.2.5 (30 de junio de 2022):

+
    +
  • NOTA: UniProt cambió la estructura de su API el 28 de junio de 2022. Actualice a la versión gget ≥ 0.2.5 si usa alguno de los módulos que consultan datos de UniProt (gget info y gget seq).
  • +
+

Versión ≥ 0.2.3: (26 de junio de 2022):

+
    +
  • JSON ahora es el formato de regreso predeterminado para la Terminal para los módulos que anteriormente devolvían el formato de data frame (CSV) (el formato se puede convertir a data frame/CSV usando la bandera [-csv][--csv]). El formato data frame/CSV sigue siendo el formato de regreso predeterminada para Python (Jupyter Lab/Google Colab) (y se puede convertir a JSON con json=True).
  • +
  • Para todos los módulos, el primer parámetro requerido se convirtió en un parámetro posicional y ya no debe nombrarse en la línea de comandos, p. ej. gget ref -s humangget ref human.
  • +
  • gget info: [--expand] está en desuso. El módulo ahora siempre devolverá toda la información disponible.
  • +
  • Ligeros cambios en la salida devuelta por gget info, incluida la devolución de los ID de Ensembl versionados.
  • +
  • gget info y gget seq ahora son compatibles con las IDs de WormBase y FlyBase.
  • +
  • Ahora también se pueden ingresar IDs de tipo Ensembl a gget archs4 y gget enrichr con la bandera [-e][--ensembl] (ensembl=True para Python (Jupyter Lab / Google Colab)).
  • +
  • El parámetro seqtype de gget seq fue reemplazado por la bandera [-t][--translate] (translate=True/False para Python (Jupyter Lab / Google Colab)) que devolverá secuencias de nucleótidos (False) o aminoácidos (True).
  • +
  • El parámetro seqtype de gget search se renombró a id_type (aún tomando los mismos parámetros 'gene' o 'transcript').
  • +
+

pypi version +image

+

Instalación

+
pip install --upgrade gget
+
+

Alternativa:

+
conda install -c bioconda gget
+
+

Para uso en Jupyter Lab / Google Colab:

+
import gget
+
+

🪄 Guía de inicio rápido

+

Terminal:

+
# Obtenga todos los FTP de anotaciones y referencias de Homo sapiens de la última versión de Ensembl
+$ gget ref homo_sapiens
+
+# Obtenga IDs de Ensembl de genes humanos con "ace2" o "angiotensin converting enzyme 2" en su nombre/descripción
+$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2'
+
+# Busque el gen ENSG00000130234 (ACE2) y su transcripción ENST00000252519
+$ gget info ENSG00000130234 ENST00000252519
+
+# Obtenga la secuencia de aminoácidos de la transcripción canónica del gen ENSG00000130234
+$ gget seq --translate ENSG00000130234
+
+# Rápidamente encuentra la ubicación genómica de la secuencia de aminoácidos
+$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# BLAST la secuencia de aminoácidos
+$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Alinee múltiples secuencias de nucleótidos o aminoácidos entre sí (también acepta la ruta al archivo FASTA)  
+$ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Alinee una o más secuencias de aminoácidos con una referencia (que contiene una o más secuencias) (BLAST local) (también acepta rutas a archivos FASTA)  
+$ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+# Alinea secuencias de nucleótidos o aminoácidos en un archivo FASTA
+$ gget muscle path/to/file.fa
+
+# Use Enrichr para un análisis de ontología de una lista de genes
+$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P
+
+# Obtene la expresión en tejido humano del gen ACE2
+$ gget archs4 -w tissue ACE2
+
+# Obtenga la estructura de la proteína (en formato PDB) de ACE2 (ID de PDB devuelta por gget info)
+$ gget pdb 1R42 -o 1R42.pdb
+
+# Encuentre motivos lineales eucarióticos (ELM) en una secuencia de aminoácidos
+$ gget setup elm        # solo debe ejecutarse una vez
+$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS
+
+# Obtene una matriz de recuento de scRNAseq (formato AnnData) basada en genes, tejidos y tipos de células especificados (especie predeterminada: humano)
+$ gget setup cellxgene  # solo debe ejecutarse una vez
+$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad
+
+# Predice la estructura proteica de GFP a partir de su secuencia de aminoácidos
+$ gget setup alphafold  # solo debe ejecutarse una vez
+$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK
+
+

Python (Jupyter Lab / Google Colab):

+
import gget
+gget.ref("homo_sapiens")
+gget.search(["ace2", "angiotensin converting enzyme 2"], "homo_sapiens")
+gget.info(["ENSG00000130234", "ENST00000252519"])
+gget.seq("ENSG00000130234", translate=True)
+gget.blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+gget.diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget.enrichr(["ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"], database="ontology", plot=True)
+gget.archs4("ACE2", which="tissue")
+gget.pdb("1R42", save=True)
+
+gget.setup("elm")         # solo debe ejecutarse una vez
+ortho_df, regex_df = gget.elm("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+
+gget.setup("cellxgene")   # solo debe ejecutarse una vez
+gget.cellxgene(gene = ["ACE2", "SLC5A1"], tissue = "lung", cell_type = "mucus secreting cell")
+
+gget.setup("alphafold")   # solo debe ejecutarse una vez
+gget.alphafold("MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK")
+
+

Use a gget con R usando reticulate:

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+gget$ref("homo_sapiens")
+gget$search(list("ace2", "angiotensin converting enzyme 2"), "homo_sapiens")
+gget$info(list("ENSG00000130234", "ENST00000252519"))
+gget$seq("ENSG00000130234", translate=TRUE)
+gget$blat("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$blast("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS")
+gget$muscle(list("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"), out="out.afa")
+gget$diamond("MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", reference="MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS")
+gget$enrichr(list("ACE2", "AGT", "AGTR1", "ACE", "AGTRAP", "AGTR2", "ACE3P"), database="ontology")
+gget$archs4("ACE2", which="tissue")
+gget$pdb("1R42", save=TRUE)
+
+

Más ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget alphafold 🪢

+

Predice la estructura en 3D de cualquier proteína derivada de su secuencia de aminoácidos usando una versión simplificada del algoritmo AlphaFold2 de DeepMind, originalmente producido y publicado para AlphaFold Colab.
+Resultado: Predicción de la estructura (en formato PDB) y el errór de alineación (en formato json).

+

Antes de usar gget alphafold por primera vez:

+
    +
  1. Instale openmm v7.5.1 (o v7.7.0 para Python >= 3.10) ejecutando el siguiente comando desde la línea de comando:
    +conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1
    +(reemplazar con openmm=7.7.0 para Python >= 3.10)
    +Recomendación: siga con conda update -qy conda para actualizar conda a la última versión.
  2. +
  3. Corre gget setup alphafold / gget.setup("alphafold") (ver también gget setup). Al ejecutar gget setup alphafold / gget.setup("alphafold") se descargará e instalará la última versión de AlphaFold2 alojada en el AlphaFold GitHub Repo. Puede volver a ejecutar este comando en cualquier momento para actualizar el software cuando hay una nueva versión de AlphaFold.
  4. +
+

Parámetro posicional
+sequence
+Secuencia de aminoácidos (str), o una lista de secuencias (gget alphafold automaticamente usa el algoritmo del multímero si múltiples secuencias son ingresadas), o una ruta a un archivo formato FASTA.

+

Parámetros optionales
+-mr --multimer_recycles
+El algoritmo de multímero se reciclara hasta que las predicciones dejen de cambiar, el limite de ciclos esta indicado aqui. Por defecto: 3
+Para obtener más exactitud, ajusta este limite a 20 (al costo de ejecuciones mas tardadas).

+

-o --out
+Ruta a la carpeta para guardar los resultados de la predicción (str). Por defecto: "./[fecha_tiempo]_gget_alphafold_prediction".

+

Banderas
+-mfm --multimer_for_monomer
+Usa el algoritmo de multímero para un monómero.

+

-r --relax
+Relaja el mejor modelo con el algoritmo AMBER.

+

-q --quiet
+Uso limitado para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False.

+

plot
+Solo para Python. plot=True provée una visualización interactiva de la predicción con el errór de alineación en 3D con py3Dmol y matplotlib (por defecto: True).

+

show_sidechains
+Solo para Python. show_sidechains=True incluye las cadenas laterales de proteínas en el esquema (por defecto: True).

+

Ejemplo

+
# Predice la estructura de una proteína derivada de su secuencia de aminoácidos
+gget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo
+gget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH
+
+# Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.
+gget pdb 3UQ3 -o 3UQ3.pdb
+gget pdb 2K42 -o 2K42.pdb
+
+
# Python
+# Predice la estructura de una proteína derivada de su secuencia de aminoácidos
+gget.alphafold("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH")
+
+# Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo
+gget.blast("MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH", database="pdbaa")
+
+# Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.
+gget.pdb("3UQ3", save=True)
+gget.pdb("2K42", save=True)
+
+

gget alphafold produce la estructura predecida (en formato PDB) y el errór de alineación (en formato json) en una nueva carpeta ("./[fecha_tiempo]_gget_alphafold_prediction"). Este ejemplo demuestra como usar gget blast y gget pdb para correr un análisis comparativo. Los archivos PDB se pueden ver en 3D con RCSB 3D view, o usando programas como PyMOL o Blender. Para comparar múltiples archivos PDB, use RCSB alignment. Python también produce esquemas interactivos, los cuales se pueden generar de los archivos PDB y JSON, como es describido en gget alphafold FAQ Q4.

+ +

Tutoriales

+

🔗 Google Colab tutorial

+

🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas

+

🔗 gget alphafold - preguntas más frecuentes

+

Citar

+

Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos:

+ +

Y, si corresponde:

+ +
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no es especificado de otra manera. Las banderas son designadas como cierto o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede obtener desde Terminal con la bandera -h --help.

+
+

gget archs4 🐁

+

Encuentra los genes más correlacionados a un gen de interés, o bién, encuentra los tejidos donde un gen se expresa usando la base de datos ARCHS4.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+gene
+Nombre corto (símbolo del gen) del gen de interés, p. ej. STAT4.
+Alternativamente: usa la bandera --ensembl para ingresar un ID tipo Ensembl, p. ej. ENSG00000138378.

+

Parámetros optionales
+-w --which
+'correlation' (correlación; se usa por defecto) o 'tissue' (tejido).
+'correlation' produce una tabla que contiene los 100 genes más correlacionados con el gen de interés. La correlación de Pearson se calcula de todas las muestras y tejidos en ARCHS4.
+'tissue' produce un atlas de expresión tisular calculado de todas las muestras humanas o de ratón (según lo definido usando el parámetro --species (especies)) en ARCHS4.

+

-s --species
+'human' (humano; se usa por defecto) o 'mouse' (ratón).
+Define si se usan muestras humanas o de ratón de ARCHS4.
+(Solo aplica para el atlas de expresión tisular.)

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, use save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-e --ensembl
+Usa esta bandera si gene se ingresa como ID tipo Ensembl.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para obtener los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
gget archs4 ACE2
+
+
# Python
+gget.archs4("ACE2")
+
+

→ Produce los 100 genes más correlacionados con el gen ACE2:

+
+ + + +
gene_symbolpearson_correlation
SLC5A10.579634
CYP2C180.576577
. . .. . .
+
+



+
gget archs4 -w tissue ACE2
+
+
# Python
+gget.archs4("ACE2", which="tissue")
+
+

→ Produce la expresión tisular de ACE2 (por defecto, se utilizan datos humanos):

+
+ + + +
idminq1medianq3max
System.Urogenital/Reproductive System.Kidney.RENAL CORTEX0.1136448.2740609.69584010.5167011.21970
System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL0.1136445.9055609.57045013.2647013.83590
. . .. . .. . .. . .. . .. . .
+
+



+Consulte este tutorial de Dave Tang, quien escribió un script R para crear esta visualización con los resultados de gget archs4 en formato JSON:

+

image

+

Más ejemplos

+

Citar

+

Si utiliza gget archs4 en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

    +
  • +
  • +

    Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

    +
  • +
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget blast 💥

+

BLAST una secuencia de nucleótidos o aminoácidos a cualquier base de datos BLAST.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+sequence
+Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt.

+

Parámetros optionales
+-p --program
+'blastn', 'blastp', 'blastx', 'tblastn', o 'tblastx'.
+Por defecto: 'blastn' para secuencias de nucleótidos; 'blastp' para secuencias de aminoácidos.

+

-db --database
+'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', o 'pdbnt'.
+Por defecto: 'nt' para secuencias de nucleótidos; 'nr' para secuencias de aminoácidos.
+Más información sobre los bases de datos BLAST

+

-l --limit
+Limita el número de resultados producidos. Por defecto: 50.

+

-e --expect
+Define el umbral de 'expect value'. Por defecto: 10.0.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-lcf --low_comp_filt
+Activa el 'low complexity filter' (filtro de baja complejidad).

+

-mbo --megablast_off
+Desactiva el algoritmo MegaBLAST. Por defecto: MegaBLAST esta activado (solo aplicable para blastn).

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blast("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR")
+
+

→ Produce los resultados BLAST de la secuencia de interés. gget blast automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el programa BLAST en blastp con la base de datos nr.

+
+ + +
DescriptionScientific NameCommon NameTaxidMax ScoreTotal ScoreQuery Cover...
PREDICTED: gamma-aminobutyric acid receptor-as...Colobus angolensis palliatusNaN336983180180100%...
. . .. . .. . .. . .. . .. . .. . ....
+
+

BLAST desde un archivo .fa o .txt:

+
gget blast fasta.fa
+
+
# Python
+gget.blast("fasta.fa")
+
+

→ Produce los resultados BLAST de la primera secuencia contenida en el archivo 'fasta.fa'.

+

Más ejemplos

+

Citar

+

Si utiliza gget blast en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.

    +
  • +
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget blat 🎯

+

Encuentra la ubicación genómica de una secuencia de nucleótidos o aminoácidos usando BLAT.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+sequence
+Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt.

+

Parámetros optionales
+-st --seqtype
+'DNA', 'protein', 'translated%20RNA', o 'translated%20DNA'.
+Por defecto: 'DNA' para secuencias de nucleótidos; 'protein' para secuencias de aminoácidos.

+

-a --assembly
+Ensamblaje del genoma. 'human' (hg38) (se usa por defecto), 'mouse' (mm39) (ratón), 'zebrafish' (taeGut2) (pinzón cebra),
+o cualquiera de los ensamblajes de especies disponibles aquí (use el nombre corto del ensamblado, p. ej. 'hg38').

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR
+
+
# Python
+gget.blat("MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR", assembly="taeGut2")
+
+

→ Produce los resultados de BLAT para el ensamblaje taeGut2 (pinzón cebra). En este ejemplo, gget blat automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el tipo de secuencia (--seqtype) como proteína.

+
+ +
genomequery_sizealigned_startaligned_endmatchesmismatches%_aligned...
taeGut288128877087.5...
+
+

Màs ejemplos

+

Citar

+

Si utiliza gget blat en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.

    +
  • +
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget cellxgene 🍱

+

Query data de la base de datos CZ CELLxGENE Discover usando CZ CELLxGENE Discover Census.
+Produce: Un objeto AnnData que contiene la matriz de recuentos de genes y los metadatos de resultados de single cell RNA-seq de los tejidos/genes/etcetera previamente definidos.

+

Antes de usar gget cellxgene por primera vez, corre gget setup cellxgene / gget.setup("cellxgene") (ver también gget setup).

+

Parámetros opcionales
+-s --species
+'homo_sapiens' o 'mus_musculus'. Por defecto: 'homo_sapiens'.

+

-g --gene
+Str o lista de genes de interés o ID(s) tipo Ensembl. Por defecto: None (ninguno).
+Atención: Utilice la bandera -e / --ensembl (Python: ensembl=True) cuando ingrese ID(s) tipo Ensembl.
+Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de genes.

+

-cv --census_version
+Versión del CZ CELLxGENE Discover Census (str), p. ej. "2023-05-15", o "latest" (ultima) o "stable" (estable). Por defecto: "stable" (estable).

+

-cn --column_names
+Lista de columnas de metadatos a obtener (almacenadas en AnnData.obs).
+Por defecto: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type']
+Para más opciones, ver: https://api.cellxgene.cziscience.com/curation/ui/#/ -> 'Schemas' -> 'dataset'

+

-o --out
+Ruta al archivo para guardar el objeto AnnData formato .h5ad (o .csv con bandera -mo / --meta_only).
+¡Requerido cuando se usa desde Terminal!

+

Banderas
+-e --ensembl
+Usa esta bandera si gene se ingresa como ID tipo Ensembl.

+

-mo --meta_only
+Solo produce la tabla (Dataframe) con metadatos (corresponde a AnnData.obs).

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Parámetros opcionales correspondientes a los atributos de metadatos de CZ CELLxGENE Discover
+--tissue
+Str o lista de tejido(s), p. ej. ['lung', 'blood']. Por defecto: None.
+Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de tejidos.

+

--cell_type
+Str o lista de tipo(s) de célula(s), p. ej. ['mucus secreting cell', 'neuroendocrine cell']. Por defecto: None.
+Ver https://cellxgene.cziscience.com/gene-expression y seleccione un tejido para ejemplos de tipos de células.

+

--development_stage
+Str o lista de etapa(s) de desarrollo. Por defecto: None.

+

--disease
+Str o lista de enfermedad(es). Por defecto: None.

+

--sex
+Str o lista de sexo(s), p. ej. 'female' (femenina). Por defecto: None.

+

--dataset_id
+Str o lista de CELLxGENE ID(s). Por defecto: None.

+

--tissue_general_ontology_term_id
+Str o lista de tejido(s) del tipo high-level UBERON ID. Por defecto: None.
+Tejidos y sus IDs tipo UBERON se enumeran aquí.

+

--tissue_general
+Str o lista de tejido(s) del tipo high-level. Por defecto: None.
+Tejidos y sus IDs de UBERON se enumeran aquí.

+

--tissue_ontology_term_id
+Str o lista de ID(s) de 'tissue ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--assay_ontology_term_id
+Str o lista de ID(s) de 'assay ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--assay
+Str o lista de 'assays' (métodos) como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--cell_type_ontology_term_id
+Str o lista de ID(s) de 'celltype ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--development_stage_ontology_term_id
+Str o lista de ID(s) de 'development stage ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--disease_ontology_term_id
+Str o lista de ID(s) de 'disease ontology term' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--donor_id
+Str o lista de ID(s) de 'donor' (donador) como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--self_reported_ethnicity_ontology_term_id
+Str o lista de ID(s) de 'self-reported ethnicity ontology' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--self_reported_ethnicity
+Str o lista de etnias autoinformadas como están definidas en el esquema de datos del CELLxGENE. Por defecto: None.

+

--sex_ontology_term_id
+Str o lista de ID(s) de 'sex ontology' como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

--suspension_type
+Str o lista de tipo(s) de suspensión como están definidos en el esquema de datos del CELLxGENE. Por defecto: None.

+

Ejemplo

+
gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad
+
+
# Python
+adata = gget.cellxgene(
+    gene = ["ACE2", "ABCA1", "SLC5A1"],
+    tissue = "lung",
+    cell_type = ["mucus secreting cell", "neuroendocrine cell"]
+)
+adata
+
+

→ Produce un objeto AnnData que contiene la matriz de recuentos de scRNAseq de los genes ACE2, ABCA1 y SLC5A1 en 3322 células secretoras de mucosidad y neuroendocrinas pulmonares humanas y sus metadatos correspondientes.

+



+

Obtiene solo los metadatos (corresponde a AnnData.obs):

+
gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv
+
+
# Python
+df = gget.cellxgene(
+    meta_only = True,
+    gene = "ENSMUSG00000015405",
+    ensembl = True,
+    tissue = "lung",  
+    species = "mus_musculus"
+)
+df
+
+

→ Produce solo los metadatos de los conjuntos de datos de ENSMUSG00000015405 (ACE2), los cuales corresponden a células pulmonares murinas.

+

Ver también: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html

+

Citar

+

Si utiliza gget cellxgene en una publicación, favor de citar los siguientes artículos:

+ +
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget cosmic 🪐

+

Busque genes, mutaciones, etc. asociados con cánceres utilizando la base de datos COSMIC (Catálogo de mutaciones somáticas en cáncer).
+Produce: JSON (línea de comandos) o marco de datos/CSV (Python) cuando download_cosmic=False. Cuando download_cosmic=True, descarga la base de datos solicitada en la carpeta especificada.

+

Este módulo fue escrito en parte por @AubakirovArman (consulta de información) y @josephrich98 (descarga de base de datos).

+

NOTA: Se aplican tarifas de licencia para el uso comercial de COSMIC. Puede leer más sobre la concesión de licencias de datos COSMIC aquí.

+

Parámetro posicional (para consultar información)
+searchterm
+Término de búsqueda, que puede ser una mutación, un nombre de gen (o ID de Ensembl), una muestra, etc.
+Ejemplos para los argumentos de searchterm y entidad:

+
+ + + + + + + + + + +
searchtermentidad
EGFRmutaciones-> Encuentra mutaciones en el gen EGFR asociadas con el cáncer
v600emutaciones-> Encuentra genes para los cuales una mutación v600e está asociada con el cáncer
COSV57014428mutaciones-> Encuentra mutaciones asociadas con esta ID de mutaciones COSMIC
EGFRgenes-> Obtiene el número de muestras, mutaciones simples/codificantes y fusiones observadas en COSMIC para EGFR
prostatecáncer-> Obtiene el número de muestras probadas y mutaciones para el cáncer de próstata
prostatesitio_tumoral-> Obtiene el número de muestras probadas, genes, mutaciones, fusiones, etc. con 'próstata' como sitio de tejido primario
ICGCestudios-> Obtiene el código de proyecto y descripciones de todos los estudios de ICGC (Consortio Internacional del Genoma del Cáncer)
EGFRpubmed-> Encuentra publicaciones de PubMed sobre EGFR y cáncer
ICGCmuestras-> Obtiene metadatos sobre todas las muestras de ICGC (Consortio Internacional del Genoma del Cáncer)
COSS2907494muestras-> Obtiene metadatos sobre esta ID de muestra COSMIC (tipo de cáncer, tejido, # genes analizados, # mutaciones, etc.)
+
+

NOTA: (Solo Python) Establezca en None cuando se descarguen bases de datos COSMIC con download_cosmic=True.

+

Parámetros opcionales (para consultar información)
+-e --entity
+'mutations' (predeterminado), 'genes', 'cáncer', 'sitio_tumoral', 'estudios', 'pubmed' o 'muestras'. +Define el tipo de resultados a devolver.

+

-l --limit
+Limita el número de resultados a devolver. Predeterminado: 100.

+

Banderas (para descargar bases de datos COSMIC)
+-d --download_cosmic
+Conmuta al modo de descarga de base de datos.

+

-gm --gget_mutate
+DESACTIVA la creación de una versión modificada de la base de datos para usar con gget mutate. +Python: gget_mutate es Verdadero por defecto. Establezca gget_mutate=False para deshabilitar.

+

Parámetros opcionales (para descargar bases de datos COSMIC)
+-mc --mutation_class
+'cancer' (predeterminado), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', o 'cancer_example'
+Tipo de base de datos COSMIC para descargar.

+

-cv --cosmic_version
+Versión de la base de datos COSMIC. Predeterminado: Ninguno -> Se establece en la última versión por defecto.

+

-gv --grch_version
+Versión del genoma de referencia humano GRCh en el que se basó la base de datos COSMIC (37 o 38). Predeterminado: 37

+

Parámetros opcionales (generales)
+-o --out
+Ruta al archivo (o carpeta cuando se descargan bases de datos con el flag download_cosmic) donde se guardarán los resultados, p. ej. 'ruta/a/resultados.json'.
+Predeterminado: None
+-> Cuando download_cosmic=False: Los resultados se devolverán a la salida estándar
+-> Cuando download_cosmic=True: La base de datos se descargará en el directorio de trabajo actual

+

Banderas (generales)
+-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.

+

Por ejemplo

+

Consultar información

+
gget cosmic -e genes EGFR
+
+
# Python
+gget.cosmic("EGFR", entity="genes")
+
+

→ Devuelve mutaciones en el gen EGFR asociadas con el cáncer en el formato:

+
+ + + +
GeneSyntaxAlternate IDsCanonical
EGFRc.*2446A>GEGFR c.*2446A>G, EGFR p.?, ...y
EGFRc.(2185_2283)ins(18)EGFR c.(2185_2283)ins(18), EGFR p.?, ...y
. . .. . .. . .. . .
+
+

Descargar bases de datos COSMIC

+
gget cosmic --download_cosmic
+
+
# Python
+gget.cosmic(searchterm=None, download_cosmic=True)  
+
+

→ Descargue la base de datos sobre cáncer de COSMIC de la última versión de COSMIC.

+

Citar

+

Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos:

+
    +
  • +

    Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

    +
  • +
  • +

    Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.

    +
  • +
+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget diamond 💎

+

Alinee múltiples proteínas o secuencias de ADN traducidas usando DIAMOND (DIAMOND es similar a BLAST, pero este es un cálculo local).
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+query
+Secuencia(s) (str o lista) de aminoácidos, o una ruta a un archivo tipo FASTA.

+

Parámetro requerido
+-ref --reference
+Secuencias de aminoácidos de referencia (str o lista), o una ruta a un archivo tipo FASTA.

+

Parámetros optionales
+-db --diamond_db
+Ruta para guardar la base de datos DIAMOND creada a partir de reference (str).
+Por defecto: None -> El archivo de base de datos DIAMOND temporal se eliminará después de la alineación o se guardará en out si se proporciona out.

+

-s --sensitivity
+Sensibilidad de la alineación (str). Por defecto: "very-sensitive" (muy sensible).
+Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t --threads
+Número de hilos de procesamiento utilizados (int). Por defecto: 1.

+

-db --diamond_binary
+Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados (str), p. ej. "ruta/al/directorio". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan.

+

Banderas
+-u --uniprot
+Use esta bandera cuando sequence es un ID de Uniprot en lugar de una secuencia de aminoácidos.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+
# !!! Asegúrese de enumerar primero el argumento posicional aquí para que no se agregue como secuencia de referencia
+gget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS
+
+
# Python
+gget.diamond(["GGETISAWESQME", "ELVISISALIVE", "LQVEFRANKLIN", "PACHTERLABRQCKS"], reference=["GGETISAWESQMEELVISISALIVELQVEFRANKLIN", "PACHTERLABRQCKS"])
+
+

→ Produce los resultados de la alineación en formato JSON (Terminal) o Dataframe/CSV:

+
+ + + +
query_accessionsubject_accessionidentity_percentagequery_seq_lengthsubject_seq_lengthlengthmismatchesgap_openingsquery_startquery_endsubject_startsubject_ende-valuebit_score
Seq0Seq0100133713001131132.82e-0930.8
Seq2Seq01001237120011226374.35e-0827.7
Seq3Seq1100151515001151152.01e-1136.2
+
+

Màs ejemplos

+

Citar

+

Si utiliza gget diamond en una publicación, favor de citar los siguientes artículos:

+ +
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget elm 🎭

+

Prediga localmente motivos lineales eucarióticos (ELMs) a partir de una secuencia de aminoácidos o UniProt Acc utilizando datos de la base de datos ELM.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Este módulo devuelve dos tipos de resultados (ver ejemplos).

+

Los datos de ELM se pueden descargar y distribuir para uso no comercial de acuerdo con el acuerdo de licencia de software de ELM.

+

Si utiliza gget elm en una publicación, favor de citar:

+ +

Antes de usar gget elm por primera vez, ejecute gget setup elm / gget.setup("elm") una vez (consulte también gget setup).

+

Parámetro posicional
+sequence
+Secuencia de aminoácidos o Uniprot Acc (str).
+Al proporcionar una Uniprot Acc, use la bandera --uniprot (Python: uniprot=True).

+

Parámetros optionales
+-s sensitivity
+Sensibilidad de la alineación DIAMOND (str). Por defecto: "very-sensitive" (muy sensible).
+Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive.

+

-t threads
+Número de hilos de procesamiento utilizados en la alineación de secuencias con DIAMOND (int). Por defecto: 1.

+

-bin diamond_binary
+Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados (str), p. ej. "ruta/al/directorio". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan.

+

Banderas
+-u --uniprot
+Use esta bandera cuando sequence es una Uniprot Acc en lugar de una secuencia de aminoácidos.

+

-e --expand
+Amplíe la información devuelta en el marco de datos de expresiones regulares para incluir los nombres de proteínas, los organismos y las referencias en las que se validó originalmente el motivo.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True para producir los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplo

+

Encuentre ELM en una secuencia de aminoácidos:

+
gget setup elm          # Descarga/actualiza la base de datos ELM local
+gget elm -o gget_elm_results LIAQSIGQASFV
+
+
# Python
+gget.setup(“elm”)      # Descarga/actualiza la base de datos ELM local
+ortholog_df, regex_df = gget.elm("LIAQSIGQASFV")
+
+

Encuentre ELM que proporcionen a una UniProt Acc:

+
gget setup elm          # Descarga/actualiza la base de datos ELM local
+gget elm -o gget_elm_results --uniprot Q02410 -e
+
+
# Python
+gget.setup(“elm”)      # Descarga/actualiza la base de datos ELM local
+ortholog_df, regex_df = gget.elm("Q02410", uniprot=True, expand=True)
+
+

→ Produce dos resultados con información extensa sobre ELMs asociados con proteínas ortólogas y motivos encontrados en la secuencia de entrada directamente en función de sus expresiones regex:

+

ortholog_df:

+
+ + +
Ortholog_UniProt_AccProteinNameclass_accessionELMIdentifierFunctionalSiteNameDescriptionOrganism
Q02410APBA1_HUMANELME000357LIG_CaMK_CASK_1CASK CaMK domain binding ligand motifMotif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2.Homo sapiens
Q02410APBA1_HUMANELME000091LIG_PDZ_Class_2PDZ domain ligandsThe C-terminal class 2 PDZ-binding motif is classically represented by a pattern such asHomo sapiens
+
+

regex_df:

+
+ + + + + + +
Instance_accessionELMIdentifierFunctionalSiteNameELMTypeDescriptionInstances (Matched Sequence)Organism
ELME000321CLV_C14_Caspase3-7Caspase cleavage motifCLVCaspase-3 and Caspase-7 cleavage site.ERSDGMus musculus
ELME000102CLV_NRD_NRD_1NRD cleavage siteCLVN-Arg dibasic convertase (NRD/Nardilysin) cleavage site.RRARattus norvegicus
ELME000100CLV_PCSK_PC1ET2_1PCSK cleavage siteCLVNEC1/NEC2 cleavage site.KRDMus musculus
ELME000146CLV_PCSK_SKI1_1PCSK cleavage siteCLVSubtilisin/kexin isozyme-1 (SKI1) cleavage site.RLLTAHomo sapiens
ELME000231DEG_APCC_DBOX_1APCC-binding Destruction motifsDEGAn RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent mannerSRVKLNIVRSaccharomyces cerevisiae S288c
+
+

(Los motivos que aparecen en muchas especies diferentes pueden parecer repetidos, pero todas las filas deben ser únicas.)

+

Màs ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget enrichr 💰

+

Realice un análisis de enriquecimiento de una lista de genes utilizando Enrichr.
+Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+genes
+Lista de nombres cortos (símbolos) de los genes de interés para realizar el análisis de enriquecimiento, p. PHF14 RBM3 MSL1 PHF21A.
+Alternativamente: use la bandera --ensembl para ingresar IDs tipo Ensembl, p. ENSG00000106443 ENSG00000102317 ENSG00000188895.

+

Otros parámetros requeridos
+-db --database
+Base de datos que será utilizada como referencia para el análisis de enriquecimiento.
+Admite cualquier base de datos enumerada aquí o uno de los siguientes accesos directos:
+'pathway'       (KEGG_2021_Human)
+'transcription'     (ChEA_2016)
+'ontology'      (GO_Biological_Process_2021)
+'diseases_drugs'   (GWAS_Catalog_2019)
+'celltypes'      (PanglaoDB_Augmented_2021)
+'kinase_interactions'  (KEA_2015)

+

Parámetros opcionales
+-bkg_l --background_list
+Lista de nombres cortos (símbolos) de genes de 'background' (de fondo/control), p. NSUN3 POLRMT NLRX1.
+Alternativamente: usa la bandera --ensembl_background para ingresar IDs tipo Ensembl.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

-ko --kegg_out
+Ruta al archivo png en el que se guardará la imágen de la vía de señalización celular KEGG, p. ej. ruta/al/directorio/KEGG.png. (Por defecto: None)

+

-kr --kegg_rank
+Rango de la ruta KEGG que se va a trazar. (Por defecto: 1)

+

figsize
+Solo para Python. (ancho, alto) de la visualización en pulgadas. (Por defecto: (10,10))

+

ax
+Solo para Python. Ingresa un objeto de ejes matplotlib para personalizar la visualización.(Por defecto: None)

+

Banderas
+-e --ensembl
+Usa esta bandera si genes se ingresa como una lista de IDs tipo Ensembl.

+

-e_b --ensembl_background
+Usa esta bandera si background_list se ingresa como una lista de IDs tipo Ensembl.

+

-bkg --background
+Use un conjunto de 20,625 genes 'background' +listados aquí.

+

-csv --csv
+Solo para Terminal. Produce los resultados en formato CSV.
+Para Python, usa json=True produce los resultados en formato JSON.

+

-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.

+

plot
+Solo para Python. plot=True provée la visualización de los primeros 15 resultados (por defecto: False).

+

Ejemplo

+
gget enrichr -db ontology ACE2 AGT AGTR1
+
+
# Python
+gget.enrichr(["ACE2", "AGT", "AGTR1"], database="ontology", plot=True)
+
+

→ Produce vías/funciones celulares relacionadas con los genes ACE2, AGT y AGTR1 de la base de datos GO Biological Process 2021. En Python, plot=True provee la visualización de resultados:

+

alt text

+



+

Use gget enrichr con una lista de genes 'background':

+
# Aquí, primero ingresamos los genes de interés (parámetro posicional 'genes'), para que no se agreguen a la lista de genes 'background' detrás del parámetro '-bkgr_l'
+gget enrichr \
+	PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \
+	-db ChEA_2022 \
+	-bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2
+
+
# Python
+gget.enrichr(
+	genes = [
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", "P2RX7",
+		"LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", "ANAPC16", "TMCC1",
+		"CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", "PLBD2", "LARP7", "TECPR2", 
+		"ZNF302", "CUX1", "MOB2", "CYTH2", "SEC22C", "EIF4E3", "ROBO2",
+		"ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", "ATP5F1"
+	], 
+	database = "ChEA_2022",
+	background_list = [
+		"NSUN3","POLRMT","NLRX1","SFXN5","ZC3H12C","SLC25A39","ARSG",
+		"DEFB29","PCMTD2","ACAA1A","LRRC1","2810432D09RIK","SEPHS2",
+		"SAC3D1","TMLHE","LOC623451","TSR2","PLEKHA7","GYS2","ARHGEF12",
+		"HIBCH","LYRM2","ZBTB44","ENTPD5","RAB11FIP2","LIPT1",
+		"INTU","ANXA13","KLF12","SAT2","GAL3ST2","VAMP8","FKBPL",
+		"AQP11","TRAP1","PMPCB","TM7SF3","RBM39","BRI3","KDR","ZFP748",
+		"NAP1L1","DHRS1","LRRC56","WDR20A","STXBP2","KLF1","UFC1",
+		"CCDC16","9230114K14RIK","RWDD3","2610528K11RIK","ACO1",
+		"CABLES1", "LOC100047214","YARS2","LYPLA1","KALRN","GYK",
+		"ZFP787","ZFP655","RABEPK","ZFP650","4732466D17RIK","EXOSC4",
+		"WDR42A","GPHN","2610528J11RIK","1110003E01RIK","MDH1","1200014M14RIK",
+		"AW209491","MUT","1700123L14RIK","2610036D13RIK",
+		"PHF14", "RBM3", "MSL1", "PHF21A", "ARL10", "INSR", "JADE2", 
+		"P2RX7", "LINC00662", "CCDC101", "PPM1B", "KANSL1L", "CRYZL1", 
+		"ANAPC16", "TMCC1","CDH8", "RBM11", "CNPY2", "HSPA1L", "CUL2", 
+		"PLBD2", "LARP7", "TECPR2", "ZNF302", "CUX1", "MOB2", "CYTH2", 
+		"SEC22C", "EIF4E3", "ROBO2", "ADAMTS9-AS2", "CXXC1", "LINC01314", "ATF7", 
+		"ATP5F1""COX15","TMEM30A","NSMCE4A","TM2D2","RHBDD3","ATXN2","NFS1",
+		"3110001I20RIK","BC038156","C330002I19RIK","ZFYVE20","POLI","TOMM70A",
+		"LOC100047782","2410012H22RIK","RILP","A230062G08RIK",
+		"PTTG1IP","RAB1","AFAP1L1", "LYRM5","2310026E23RIK",
+		"SLC7A6OS","MAT2B","4932438A13RIK","LRRC8A","SMO","NUPL2"
+	],
+	plot=True
+)
+
+

→ Provée factores de transcripción relacionados a los genes de interés y controlados con la lista de genes background de la base de datos ChEA 2022. En Python, plot=True permite la visualización de resultados:

+

alt text

+



+

Genere una imagen de la vía de señalización de células KEGG con los genes del análisis de enriquecimiento resaltados:
+Esta función está disponible gracias a un PR de Noriaki Sato.

+
gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1
+
+
# Python
+gget.enrichr(["ZBP1", "IRF3", "RIPK1"], database="pathway", kegg_out="kegg.png", kegg_rank=1)
+
+

→ Además de los resultados estándar gget enrichr, el argumento kegg_out guarda una imagen con los genes del análisis de enriquecimiento resaltados guardado como kegg.png:

+

kegg

+



+

El siguiente ejemplo fue enviado por Dylan Lawless a través de un PR (con ajustes de Laura Luebbert):
+Use gget enrichr en R y cree unq visualización similar usando ggplot.
+TENGA EN CUENTA el cambio de ejes en comparación con la visualización en Python.

+
system("pip install gget")
+install.packages("reticulate")
+library(reticulate)
+gget <- import("gget")
+
+# Perform enrichment analysis on a list of genes
+df <- gget$enrichr(list("ACE2", "AGT", "AGTR1"), database = "ontology")
+
+# Count number of overlapping genes
+df$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric()
+
+# Only keep the top 15 results
+df <- df[1:15, ]
+
+# Plot
+library(ggplot2)
+
+df |>
+	ggplot() +
+	geom_bar(aes(
+		x = -log10(adj_p_val),
+		y = reorder(path_name, -adj_p_val)
+	),
+	stat = "identity",
+  	fill = "lightgrey",
+  	width = 0.5,
+	color = "black") +
+	geom_text(
+		aes(
+			y = path_name,
+			x = (-log10(adj_p_val)),
+			label = overlapping_genes_count
+		),
+		nudge_x = 0.75,
+		show.legend = NA,
+		color = "red"
+	) +
+  	geom_text(
+		aes(
+			y = Inf,
+			x = Inf,
+      			hjust = 1,
+      			vjust = 1,
+			label = "# of overlapping genes"
+		),
+		show.legend = NA,
+		color = "red"
+	) +
+	geom_vline(linetype = "dotted", linewidth = 1, xintercept = -log10(0.05)) +
+	ylab("Pathway name") +
+	xlab("-log10(adjusted P value)")
+
+

Más ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget gpt 💬

+

Genera texto en lenguaje natural basado en mensaje de entrada. gget gpt use la API 'openai.ChatCompletion.create' de OpenAI. +Este módulo, incluido su código, documentación y pruebas unitarias, fue escrito en parte por Chat-GTP3 de OpenAI.

+

TENGA EN CUENTA:
+Las llamadas a la API de OpenAI solo son 'gratuitas' durante los primeros tres meses después de generar su cuenta de OpenAI (OpenAI proporciona un crédito de $5 que vence).
+Puede definir un límite de facturación mensual estricto (por ejemplo, $1) aquí.
+Vea sus precios y preguntas frecuentes aquí.
+Obtenga su clave API de OpenAI aquí.

+

Regresa: El texto generado (str).

+

Antes de usar gget gpt por primera vez, corre gget setup gpt / gget.setup("gpt") (ver también gget setup).

+

Parámetros posicionales
+prompt
+Mensaje de entrada basado en el cual generar texto (str).

+

api_key
+Su clave API de OpenAI (str) (obtenga su clave API).

+

Parámetros optionales
+-m --model
+El nombre del algoritmo GPT que se usará para generar el texto (str). Por defecto: "gpt-3.5-turbo".
+See https://platform.openai.com/docs/models/gpt-4 for more information on the available models.

+

-temp --temperature
+Valor entre 0 y 2 que controla el nivel de aleatoriedad y creatividad en el texto generado (float).
+Los valores más altos resultan en un texto más creativo y variado. Por defecto: 1.

+

-tp --top_p
+Controla la diversidad del texto generado como alternativa al muestreo con --temperature (float).
+Los valores más altos resultan en un texto más diverso e inesperado. Por defecto: 1.
+Tenga en cuenta que OpenAI recomienda modificar --top_p o el parámetro --temperature, pero no ambas.

+

-s --stop
+Una secuencia de tokens para marcar el final del texto generado (str). Por defecto: None.

+

-mt --max_tokens
+Controla la longitud máxima del texto generado, en tokens (int). Por defecto: 200.

+

-pp --presence_penalty
+Número entre -2.0 y 2.0. Los valores más altos aumentan la probabilidad de que el modelo hable sobre temas nuevos (float). Por defecto: 0.

+

-fp --frequency_penalty
+Número entre -2.0 y 2.0. Los valores más altos reducen la probabilidad de que el modelo repita la misma línea palabra por palabra (float). Por defecto: 0.

+

-lb --logit_bias
+Un diccionario que especifica un sesgo hacia ciertos tokens en el texto generado (dict). Por defecto: None.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.txt. Por defecto: salida estándar (STDOUT).

+

Por ejemplo

+
gget gpt "Cómo estás hoy GPT?" su_clave_api
+
+
# Python
+print(gget.gpt("Cómo estás hoy GPT?", "su_clave_api"))
+
+
+Screen Shot 2023-03-18 at 3 42 32 PM +
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget info 💡

+

Obtenga información detallada sobre genes y transcripciones de Ensembl, UniProt y NCBI utilizando sus IDs del tipo Ensembl.
+Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+ens_ids
+Uno o más ID del tipo Ensembl.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-n --ncbi
+DESACTIVA los resultados de NCBI.
+Para Python: ncbi=False evita la incluida de datos de NCBI (por defecto: True).

+

-u --uniprot
+DESACTIVA los resultados de UniProt.
+Para Python: uniprot=False evita la incluida de datos de UniProt (por defecto: True).

+

-pdb --pdb
+INCLUYE PDB IDs en los resultados (podría aumentar el tiempo de ejecución).
+Para Python: pdb=True incluye IDs de PDB en los resultados (por defecto: False).

+

-csv --csv
+Solo para la Terminal. Regresa los resultados en formato CSV.
+Para Python, usa json=True para regresar los resultados en formato JSON.

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget info ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.info(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Regresa información detallada sobre cada ID de Ensembl ingresada:

+
+ + +
uniprot_idncbi_gene_idprimary_gene_namesynonymsprotein_namesensembl_descriptionuniprot_descriptionncbi_descriptionbiotypecanonical_transcript...
ENSG00000034713P6052011345GABARAPL2[ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2]Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)...GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ...Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein...protein_codingENST00000037243.7...
. . .. . .. . .. . .. . .. . .. . .. . .. . .. . .. . ....
+
+

More examples

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget muscle 🦾

+

Alinea múltiples secuencias de nucleótidos o aminoácidos usando el algoritmo Muscle5.
+Regresa: Salida estándar (STDOUT) en formato ClustalW o archivo de tipo 'aligned FASTA' (.afa).

+

Parámetro posicional
+fasta
+Lista de secuencias o ruta al archivo FASTA o .txt que contiene las secuencias de nucleótidos o aminoácidos que se van a alinear.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.afa. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-s5 --super5
+Alinea las secuencies usando el algoritmo Super5 en lugar del algoritmo Parallel Perturbed Probcons (PPP) para disminuir el tiempo y la memoria usada durante la corrida.
+Use para ingresos grandes (unos cientos secuencias).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+
gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS
+
+
# Python
+gget.muscle(["MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS", "MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS"])
+
+
gget muscle fasta.fa
+
+
# Python
+gget.muscle("fasta.fa")
+
+

→ Regresa las secuencias alineadas con coloración ClustalW. (Para devolver un archivo FASTA alineado (.afa), use el argumento --out (o save=True en Python).) En este ejemplo, el archivo 'fasta.fa' incluye varias secuencias para alineación (por ejemplo, isoformas devueltas desde gget seq).

+

alt text

+

También puede ver archivos FASTA alineados devueltos por gget.muscle usando programas como alv:

+
# Python
+!pip install biopython
+!pip install alv
+from Bio import AlignIO
+import alv
+
+gget.muscle("fasta.fa", out="fasta_aligned.afa")
+msa = AlignIO.read("fasta_aligned.afa", "fasta")
+alv.view(msa)
+
+

More examples

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget mutate 🧟

+

Recibe secuencias de nucleótidos y mutaciones (en anotación de mutación estándar) y devuelve versiones mutadas de las secuencias según las mutaciones proporcionadas.
+Formato de devolución: Guarda las secuencias mutadas en formato FASTA (o devuelve una lista que contiene las secuencias mutadas si out=None).

+

Este módulo fue coescrito por Joseph Rich.

+

Parámetro posicional
+sequences
+Ruta al archivo FASTA que contiene las secuencias a mutar, por ejemplo, 'path/to/seqs.fa'.
+Los identificadores de secuencia que siguen al carácter '>' deben corresponder a los identificadores en la columna seq_ID de mutations.
+NOTA: Solo se utilizará la cadena que sigue al '>' hasta el primer espacio o punto como identificador de secuencia. -> Se ignorarán los números de versión de los IDs de Ensembl.

+

Ejemplo de formato del archivo FASTA:

+
>seq1 (o ENSG00000106443)  
+ACTGCGATAGACT  
+>seq2  
+AGATCGCTAG
+
+

Alternativamente: Proporcione secuencia(s) como una cadena o lista, por ejemplo, 'AGCTAGCT'.

+

Otros parámetros requeridos
+-m --mutations
+Ruta al archivo csv o tsv (por ejemplo, 'path/to/mutations.csv') o marco de datos (objeto DataFrame) que contiene información sobre las mutaciones en el siguiente formato (la columna 'notas' no es necesaria):

+
+ + + + + +
mutationmut_IDseq_IDnotas
c.2C>Tmut1seq1-> Aplicar la mutación 1 a la secuencia 1
c.9_13invmut2seq2-> Aplicar la mutación 2 a la secuencia 2
c.9_13invmut2seq4-> Aplicar la mutación 2 a la secuencia 4
c.9_13delinsAATmut3seq4-> Aplicar la mutación 3 a la secuencia 4
.........
+
+

'mutation' = Columna que contiene las mutaciones a realizar, escritas en anotación de mutación estándar
+'mut_ID' = Columna que contiene el identificador de cada mutación
+'seq_ID' = Columna que contiene los identificadores de las secuencias a mutar (deben corresponder a la cadena que sigue al carácter '>' en el archivo FASTA de 'sequences'; NO incluir espacios ni puntos)

+

Alternativamente: Mutación(es) de entrada como una cadena o lista, por ejemplo, 'c.2C>T'.
+Si se proporciona una lista, el número de mutaciones debe ser igual al número de secuencias de entrada.
+Para uso desde el terminal (bash): Encierre las anotaciones de mutación individuales entre comillas para evitar errores.

+

Parámetros opcionales
+-k --k
+Longitud de las secuencias que flanquean la mutación. Por defecto: 30.
+Si k > longitud total de la secuencia, se mantendrá toda la secuencia.

+

-mc --mut_column
+Nombre de la columna que contiene las mutaciones a realizar en mutations. Por defecto: 'mutation'.

+

-mic --mut_id_column
+Nombre de la columna que contiene los IDs de cada mutación en mutations. Por defecto: 'mut_ID'.

+

-sic --seq_id_column
+Nombre de la columna que contiene los IDs de las secuencias a mutar en mutations. Por defecto: 'seq_ID'.

+

-o --out
+Ruta al archivo FASTA de salida que contiene las secuencias mutadas, por ejemplo, 'path/to/output_fasta.fa'.
+Por defecto: None -> devuelve una lista de las secuencias mutadas a la salida estándar.
+Los identificadores (después del '>') de las secuencias mutadas en el FASTA de salida serán '>[seq_ID]_[mut_ID]'.

+

Flags
+-q --quiet
+Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa.
+Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.

+

Ejemplos

+
gget mutate ATCGCTAAGCT -m 'c.4G>T'
+
+
# Python
+gget.mutate("ATCGCTAAGCT", "c.4G>T")
+
+

→ Devuelve ATCTCTAAGCT.

+



+

Lista de secuencias con una mutación para cada secuencia proporcionada en una lista:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], ["c.4G>T", "c.1_3inv"], out="mut_fasta.fa")
+
+

→ Guarda el archivo 'mut_fasta.fa' que contiene:

+
>seq1_mut1  
+ATCTCTAAGCT  
+>seq2_mut2  
+GATCTA
+
+



+

Una mutación aplicada a varias secuencias con k ajustado:

+
gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3
+
+
# Python
+gget.mutate(["ATCGCTAAGCT", "TAGCTA"], "c.1_3inv", k=3)
+
+

→ Devuelve ['CTAGCT', 'GATCTA'].

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget pdb 🔮

+

Obtenga la estructura o los metadatos de una proteína usando data de RCSB Protein Data Bank (PDB).
+Regresa: El archivo 'pdb' se regresa en formato PDB. Todos los demás datos se regresan en formato JSON.

+

Parámetro posicional
+pdb_id
+ID del tipo PDB, p. ej. '7S7U'.

+

Parámetros optionales
+-r --resource
+Define el tipo de información a regresar. Uno de los siguientes:
+'pdb': Regresa la estructura de la proteína en formato PDB (regresa por defecto).
+'entry': Regresa información sobre las estructuras PDB en el nivel superior de la organización de datos PDB jerárquicos.
+'pubmed': Regresa anotaciones de PubMed (datos integrados de PubMed) para la cita principal de un ID PDB.
+'assembly': Regresa información sobre estructuras PDB en el nivel de estructura cuaternaria.
+'branched_entity': Regresa la descripción de la entidad ramificada (defina el ID de la entidad como identifier).
+'nonpolymer_entity': Regresa datos de entidades no poliméricas (defina el ID de la entidad como identifier).
+'polymer_entity': Regresa datos de entidades poliméricas (defina el ID de la entidad como identifier).
+'uniprot': Regresa anotaciones UniProt para una entidad macromolecular (defina el ID de la entidad como identifier).
+'branched_entity_instance': Regresa la descripción de instancia de entidad ramificada (defina el ID de cadena como identifier).
+'polymer_entity_instance': Regresa datos de instancia de entidad polimérica (también conocida como cadena) (defina el ID de cadena como identifier).
+'nonpolymer_entity_instance': Regresa datos de instancia de entidad no polimérica (defina el ID de cadena como identifier).

+

-i --identifier
+Este parámetro se puede utilizar para definir el ID de ensamblaje, entidad o cadena (po defecto: None). Los IDs de ensamblaje/entidad son números (p. ej., 1) y los IDs de cadena son letras (p. ej., 'A').

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/7S7U.pdb (o 7S7U_entry.json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Por ejemplo

+
gget pdb 7S7U -o 7S7U.pdb
+
+
# Python
+gget.pdb("7S7U", save=True)
+
+

→ Guarda la estructura de 7S7U en formato PDB como '7S7U.pdb' en el directorio de trabajo actual.

+

Encuentre estructuras cristalinas de PDB para un análisis comparativo de la estructura de proteínas:

+
# Encuentre IDs de PDB asociados con un ID de Ensembl
+gget info ENSG00000130234
+
+# Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,
+# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB:
+
+# Obtenga la secuencia de aminoácidos
+gget seq --translate ENSG00000130234 -o gget_seq_results.fa
+
+# BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB
+gget blast --database pdbaa gget_seq_results.fa
+
+# Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo
+gget pdb 7DQA -o 7DQA.pdb
+gget pdb 7CT5 -o 7CT5.pdb
+
+
# Encuentre IDs de PDB asociados con un ID de Ensembl
+gget.info("ENSG00000130234")
+
+# Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,
+# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB:
+
+# Obtenga la secuencia de aminoácidos
+gget.seq("ENSG00000130234", translate=True, save=True)
+
+# BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB
+gget.blast("gget_seq_results.fa", database="pdbaa")
+
+# Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo
+gget.pdb("7DQA", save=True)
+gget.pdb("7CT5", save=True)
+
+

→ Este caso de uso ejemplifica cómo encontrar archivos PDB para un análisis comparativo de la estructura de las proteínas asociado con IDs de Ensembl o secuencias de aminoácidos. Los archivos PDB obtenidos también se pueden comparar con las estructuras predichas generadas por gget alphafold. Los archivos PDB se pueden ver de forma interactiva en 3D aquí, o usando programas como PyMOL o Blender. Múltiple archivos PDB se pueden visualizar para comparación aquí.

+

Más ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget ref 📖

+

Obtenga enlaces FTP y sus respectivos metadatos (o use la bandera ftp para regresar solo los enlaces) para referenciar genomas y anotaciones de Ensembl.
+Regresa: Resultados en formato JSON.

+

Parámetro posicional
+species
+La especie por la cual que se buscará los FTP en el formato género_especies, p. ej. homo_sapiens.
+Nota: No se requiere cuando se llama a la bandera --list_species.
+Accesos directos: 'human', 'mouse', 'human_grch37' (accede al ensamblaje del genoma GRCh37)

+

Parámetros optionales
+-w --which
+Define qué resultados devolver. Por defecto: 'all' -> Regresa todos los resultados disponibles.
+Las entradas posibles son uno solo o una combinación de las siguientes (como lista separada por comas):
+'gtf' - Regresa la anotación (GTF).
+'cdna' - Regresa el transcriptoma (cDNA).
+'dna' - Regresa el genoma (DNA).
+'cds' - Regresa las secuencias codificantes correspondientes a los genes Ensembl. (No contiene UTR ni secuencia intrónica).
+'cdrna' - Regresa secuencias de transcripción correspondientes a genes de ARN no codificantes (ncRNA).
+'pep' - Regresa las traducciones de proteínas de los genes Ensembl.

+

-r --release
+Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Default: latest Ensembl release.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.json. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-l --list_species
+Enumera todas las especies disponibles. (Para Python: combina con species=None.)

+

-ftp --ftp
+Regresa solo los enlaces FTP solicitados.

+

-d --download
+Solo para Terminal. Descarga los FTP solicitados al directorio actual (requiere curl para ser instalado).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+

Use gget ref en combinación con kallisto | bustools para construir un índice de referencia:

+
kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens)
+
+

→ kb ref crea un índice de referencia utilizando los últimos archivos de ADN y GTF de especies Homo sapiens que le ha pasado gget ref.

+



+

Enumere todos los genomas disponibles de la versión 103 de Ensembl:

+
gget ref --list_species -r 103
+
+
# Python
+gget.ref(species=None, list_species=True, release=103)
+
+

→ Regresa una lista con todos los genomas disponibles (gget ref verifica si GTF y FASTA están disponibles) de la versión 103 de Ensembl.
+(Si no se especifica ninguna versión, gget ref siempre devolverá información de la última versión de Ensembl).

+



+

Obtenga la referencia del genoma para una especie específica:

+
gget ref -w gtf,dna homo_sapiens
+
+
# Python
+gget.ref("homo_sapiens", which=["gtf", "dna"])
+
+

→ Regresa un JSON con los últimos FTP humanos GTF y FASTA, y sus respectivos metadatos, en el formato:

+
{
+    "homo_sapiens": {
+        "annotation_gtf": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz",
+            "ensembl_release": 106,
+            "release_date": "28-Feb-2022",
+            "release_time": "23:27",
+            "bytes": "51379459"
+        },
+        "genome_dna": {
+            "ftp": "http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz",
+            "ensembl_release": 106,
+            "release_date": "21-Feb-2022",
+            "release_time": "09:35",
+            "bytes": "881211416"
+        }
+    }
+}
+
+

Más ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget search 🔎

+

Obtenga genes y transcripciones de Ensembl usando términos de búsqueda de forma libre.
+Los resultados se comparan según las secciones "nombre del gen" y "descripción" en la base de datos de Ensembl. gget versión >= 0.27.9 también incluye resultados que coinciden con la sección "sinónimo" de Ensembl.
+Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python).

+

Parámetro posicional
+searchwords
+Una o más palabras de búsqueda de forma libre, p. ej. gaba nmda. (Nota: la búsqueda no distingue entre mayúsculas y minúsculas).

+

Otros parámetros requeridos
+-s --species
+Especies o base de datos a buscar.
+Una especie se puede pasar en el formato 'género_especie', p. ej. 'homo_sapiens' o 'arabidopsis_thaliana'.
+Para pasar una base de datos específica, pase el nombre de la base de datos CORE, p. ej. 'mus_musculus_dba2j_core_105_1'.

+

Todas las bases de datos disponibles para cada versión de Ensembl se pueden encontrar aquí:
+Vertebrados: http://ftp.ensembl.org/pub/current/mysql/
+Invertebrados: http://ftp.ensemblgenomes.org/pub/current/ + selecciona reino animal + selecciona mysql/

+

Accesos directos: 'human', 'mouse'

+

Parámetros optionales
+-r --release
+Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Por defecto: None -> se usa la última versión de Ensembl.

+

Nota: No se aplica a las especies invertebrados (en su lugar, puede pasar una base de datos de una especies específica (incluyen un número de versión) al argumento species). Para especies de invertebrados, Ensembl solo almacena bases de datos de 10 versiones anteriores a la versión actual.

+

Este argumento se sobrescribe si se pasa una base de datos específica (que incluye un número de publicación) al argumento species.

+

-t --id_type
+'gene' (esto se use por defecto) o 'transcript'
+Regesa genes o transcripciones, respectivamente.

+

-ao --andor
+'or' (esto se use por defecto) o 'and'
+'or' ('o'): Regresa todos los genes que INCLUYEN AL MENOS UNA de las palabras de búsqueda en su nombre/descripción.
+'and' ('y'): Regresa solo los genes que INCLUYEN TODAS las palabras de búsqueda en su nombre/descripción.

+

-l --limit
+Limita el número de resultados de búsqueda, p. ej. 10. Por defecto: None.

+

-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-csv --csv
+Solo para la Terminal. Regresa los resultados en formato CSV.
+Para Python, usa json=True para regresar los resultados en formato JSON.

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

wrap_text
+Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).

+

Por ejemplo

+
gget search -s human gaba gamma-aminobutyric
+
+
# Python
+gget.search(["gaba", "gamma-aminobutyric"], "homo_sapiens")
+
+

→ Regresa todos los genes que contienen al menos una de las palabras de búsqueda en su nombre o descripción de Ensembl/referencia externa:

+
+ + +
ensembl_idgene_nameensembl_descriptionext_ref_descriptionbiotypeurl
ENSG00000034713GABARAPL2GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291]GABA type A receptor associated protein like 2protein_codinghttps://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713
. . .. . .. . .. . .. . .. . .
+
+

Más ejemplos

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget setup 🔧

+

Función para instalar/descargar dependencias de terceros para un módulo de gget.

+

Parámetro posicional
+module
+Módulo gget para el que se deben instalar las dependencias.

+

Por ejemplo

+
gget setup alphafold
+
+
# Python
+gget.setup("alphafold")
+
+

→ Instala todas las dependencias de terceros (modificadas) y descarga los parámetros del algoritmo (~4 GB) necesarios para ejecutar gget alphafold.

+
+

Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help.

+
+

gget seq 🧬

+

Obtenga la(s) secuencia(s) nucleótidos o aminoácidos de un gen (y todas sus isoformas) con su ID de Ensembl.
+Regresa: Archivo de tipo FASTA.

+

Parámetro posicional
+ens_ids
+One or more Ensembl IDs.

+

Parámetros optionales
+-o --out
+Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.fa. Por defecto: salida estándar (STDOUT).
+Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.

+

Banderas
+-t --translate
+Regresa secuencias de aminoácidos (en lugar de nucleótidos).
+Las secuencias de nucleótidos se obtienen de Ensembl.
+Las secuencias de aminoácidos se obtienen de UniProt.

+

-iso --isoforms
+Regresa las secuencias de todas las transcripciones conocidas.
+(Solo para IDs de genes).

+

-q --quiet
+Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida.
+Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.

+

Por ejemplo

+
gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296
+
+
# Python
+gget.seq(["ENSG00000034713", "ENSG00000104853", "ENSG00000170296"])
+
+

→ Regresa las secuencias de nucleótidos de ENSG00000034713, ENSG00000104853, y ENSG00000170296 en formato FASTA.

+



+
gget seq -t -iso ENSG00000034713
+
+
# Python
+gget.seq("ENSG00000034713", translate=True, isoforms=True)
+
+

→ Regresa las secuencias de aminoácidos de todas las transcripciones conocidas de ENSG00000034713 en formato FASTA.

+

Más ejemplos

+

Bienvenido a la guía de contribución de gget

+

¡Gracias por invertir su tiempo en contribuir con nuestro proyecto! Cualquier contribución que hagas se verá reflejada en el repositorio de GitHub de gget. ✨

+

Lea nuestro Código de conducta para mantener nuestra comunidad accesible y respetable.

+

En esta guía, obtendrá una descripción general del flujo de trabajo de contribución desde la creación de un GitHub Issue (asunto) o la creación de un GitHub Pull Request (PR) hasta la revisión y fusión de un PR.

+

Issues (asuntos)

+

Crear un nuevo Issue

+

Si detecta un problema con gget o tiene una idea para una nueva función, comproba si ya existe un Issue para este problema/sugerencia. Si no existe un Issue relacionado, puede abrir un nuevo Issue utilizando el formulario correspondiente.

+

Resolver un Issue

+

Explore nuestros Issues existentes para encontrar uno que le interese. Puede restringir la búsqueda utilizando "labels" como filtros. Si encuentra un Issue en el que desea trabajar, puede abrir un PR con una solución.

+

Contribuir a través de Pull Requests (PRs)

+

Empezar

+
    +
  1. Bifurcar ("fork") el repositorio de GitHub de gget.
  2. +
+ +
    +
  1. ¡Cree una rama de trabajo y comience con sus cambios!
  2. +
+

Confirma sus actualizaciones

+

Confirme sus cambios una vez que esté satisfecho con ellos.

+

‼️ Auto-revisa lo siguiente antes de crear un PR ‼️

+
    +
  1. Revise el contenido para mantener precisión técnica.
  2. +
  3. Edite los cambios/comentarios de gramática, ortografía y adherencia al estilo general del código de gget existente.
  4. +
  5. Formatee su código usando "black".
  6. +
  7. Asegúrese de que las pruebas unitarias pasen: +
      +
    • Las dependencias de desarrollador se pueden instalar con pip install -r dev-requirements.txt
    • +
    • Ejecute pruebas unitarias existentes desde la carpeta de gget con coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests*
    • +
    +
  8. +
  9. Agregue nuevas pruebas unitarias si corresponde: +
      +
    • Los parámetros y los resultados esperados se pueden encontrar en archivos json en ./tests/fixtures/
    • +
    • Las pruebas unitarias se pueden agregar a ./tests/test_*.py y serán detectado automáticamente
    • +
    +
  10. +
  11. Asegúrese de que las ediciones sean compatibles tanto con Python como con la Terminal +
      +
    • Los parámetros para la Terminal se definen en ./gget/main.py
    • +
    +
  12. +
  13. Agregue módulos/argumentos nuevos a la documentación, si corresponde: +
      +
    • El manual de cada módulo se puede editar/añadir como ./docs/src/*.md
    • +
    +
  14. +
+

Si tiene alguna pregunta, no dude en iniciar una discusión o crear un Issue como se describe anteriormente.

+

Crear un Pull Request (PR)

+

Cuando haya terminado con los cambios, cree un Pull Request, también conocido como "PR".

+

‼️ Realice todos los PRs contra la rama dev del repositorio gget

+ +

Una vez que envíe su PR, un miembro del equipo gget revisará su propuesta. Podemos hacer preguntas o solicitar información adicional.

+

¡Su PR está fusionado!

+

¡Felicidades! 🎉 El equipo de gget te lo agradece. ✨

+

Una vez que su PR se fusione, sus contribuciones serán visibles públicamente en el repositorio de gget.

+

Código de Conducta convenido para Contribuyentes

+

Nuestro compromiso

+

Nosotros, como miembros, contribuyentes y administradores nos comprometemos a hacer de la participación en nuestra comunidad sea una experiencia libre de acoso para todo el mundo, independientemente de la edad, dimensión corporal, discapacidad visible o invisible, etnicidad, características sexuales, identidad y expresión de género, nivel de experiencia, educación, nivel socio-económico, nacionalidad, apariencia personal, raza, casta, color, religión, o identidad u orientación sexual.

+

Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y sana.

+

Nuestros estándares

+

Ejemplos de comportamientos que contribuyen a crear un ambiente positivo para nuestra comunidad:

+
    +
  • Demostrar empatía y amabilidad ante otras personas
  • +
  • Respeto a diferentes opiniones, puntos de vista y experiencias
  • +
  • Dar y aceptar adecuadamente retroalimentación constructiva
  • +
  • Aceptar la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, aprendiendo de la experiencia
  • +
  • Centrarse en lo que sea mejor no sólo para nosotros como individuos, sino para la comunidad en general
  • +
+

Ejemplos de comportamiento inaceptable:

+
    +
  • El uso de lenguaje o imágenes sexualizadas, y aproximaciones o +atenciones sexuales de cualquier tipo
  • +
  • Comentarios despectivos (trolling), insultantes o derogatorios, y ataques personales o políticos
  • +
  • El acoso en público o privado
  • +
  • Publicar información privada de otras personas, tales como direcciones físicas o de correo +electrónico, sin su permiso explícito
  • +
  • Otras conductas que puedan ser razonablemente consideradas como inapropiadas en un +entorno profesional
  • +
+

Aplicación de las responsabilidades

+

Los administradores de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán acciones apropiadas y correctivas de forma justa en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino.

+

Los administradores de la comunidad tendrán el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, commits, código, ediciones de páginas de wiki, issues y otras contribuciones que no se alineen con este Código de Conducta, y comunicarán las razones para sus decisiones de moderación cuando sea apropiado.

+

Alcance

+

Este código de conducta aplica tanto a espacios del proyecto como a espacios públicos donde un individuo esté en representación del proyecto o comunidad. Ejemplos de esto incluyen el uso de la cuenta oficial de correo electrónico, publicaciones a través de las redes sociales oficiales, o presentaciones con personas designadas en eventos en línea o no.

+

Aplicación

+

Instancias de comportamiento abusivo, acosador o inaceptable de otro modo podrán ser reportadas a los administradores de la comunidad responsables del cumplimiento a través de lpachter@caltech.edu. Todas las quejas serán evaluadas e investigadas de una manera puntual y justa.

+

Todos los administradores de la comunidad están obligados a respetar la privacidad y la seguridad de quienes reporten incidentes.

+

Guías de Aplicación

+

Los administradores de la comunidad seguirán estas Guías de Impacto en la Comunidad para determinar las consecuencias de cualquier acción que juzguen como un incumplimiento de este Código de Conducta:

+

1. Corrección

+

Impacto en la Comunidad: El uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no acogedor en la comunidad.

+

Consecuencia: Un aviso escrito y privado por parte de los administradores de la comunidad, proporcionando claridad alrededor de la naturaleza de este incumplimiento y una explicación de por qué el comportamiento es inaceptable. Una disculpa pública podría ser solicitada.

+

2. Aviso

+

Impacto en la Comunidad: Un incumplimiento causado por un único incidente o por una cadena de acciones.

+

Consecuencia: Un aviso con consecuencias por comportamiento prolongado. No se interactúa con las personas involucradas, incluyendo interacción no solicitada con quienes se encuentran aplicando el Código de Conducta, por un periodo especificado de tiempo. Esto incluye evitar las interacciones en espacios de la comunidad, así como a través de canales externos como las redes sociales. Incumplir estos términos puede conducir a una expulsión temporal o permanente.

+

3. Expulsión temporal

+

Impacto en la Comunidad: Una serie de incumplimientos de los estándares de la comunidad, incluyendo comportamiento inapropiado continuo.

+

Consecuencia: Una expulsión temporal de cualquier forma de interacción o comunicación pública con la comunidad durante un intervalo de tiempo especificado. No se permite interactuar de manera pública o privada con las personas involucradas, incluyendo interacciones no solicitadas con quienes se encuentran aplicando el Código de Conducta, durante este periodo. Incumplir estos términos puede conducir a una expulsión permanente.

+

4. Expulsión permanente

+

Impacto en la Comunidad: Demostrar un patrón sistemático de incumplimientos de los estándares de la comunidad, incluyendo conductas inapropiadas prolongadas en el tiempo, acoso de individuos, o agresiones o menosprecio a grupos de individuos.

+

Consecuencia: Una expulsión permanente de cualquier tipo de interacción pública con la comunidad del proyecto.

+

Atribución

+

Este Código de Conducta es una adaptación del Contributor Covenant, versión 2.1, +disponible en https://www.contributor-covenant.org/es/version/2/1/code_of_conduct.html

+

Las Guías de Impacto en la Comunidad están inspiradas en la escalera de aplicación del código de conducta de Mozilla.

+

Para respuestas a las preguntas frecuentes de este código de conducta, consulta las FAQ en +https://www.contributor-covenant.org/faq. Hay traducciones disponibles en https://www.contributor-covenant.org/translationshttps://www.contributor-covenant.org/translations

+

license

+

Citar

+

Si utiliza gget en una publicación, favor de citar:
+Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836

+
    +
  • +

    Si utiliza gget alphafold, favor de citar también:

    + +

    Y si aplica:

    + +
  • +
  • +

    Si utiliza gget archs4, favor de citar también:

    +
      +
    • +

      Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6

      +
    • +
    • +

      Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519

      +
    • +
    +
  • +
  • +

    Si utiliza gget bgee, favor de citar también:

    +
      +
    • Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793
    • +
    +
  • +
  • +

    Si utiliza gget blast, favor de citar también:

    +
      +
    • Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.
    • +
    +
  • +
  • +

    Si utiliza gget blat, favor de citar también:

    +
      +
    • Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.
    • +
    +
  • +
  • +

    Si utiliza gget cbio, favor de citar también:

    +
      +
    • +

      Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095. Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037.

      +
    • +
    • +

      Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088. PMID: 23550210; PMCID: PMC4160307.

      +
    • +
    • +

      de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816. PMID: 37668528; PMCID: PMC10690089.

      +
    • +
    • +

      Please also cite the source of the data if you are using a publicly available dataset.

      +
    • +
    +
  • +
  • +

    Si utiliza gget cellxgene, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget cosmic, favor de citar también:

    +
      +
    • Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015. PMID: 30371878; PMCID: PMC6323903.
    • +
    +
  • +
  • +

    Si utiliza gget diamond, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget elm, favor de citar también:

    +
      +
    • +

      Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095

      +
    • +
    • +

      Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975

      +
    • +
    +
  • +
  • +

    Si utiliza gget enrichr, favor de citar también:

    +
      +
    • +

      Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128

      +
    • +
    • +

      Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377

      +
    • +
    • +

      Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90.

      +
    • +
    +

    Si trabaja con conjuntos de datos no humanos/ratón, cite también:

    +
      +
    • Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347. PMID: 31069376; PMCID: PMC6602483.
    • +
    +
  • +
  • +

    Si utiliza gget info, favor de citar también:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044. PMID: 37994677; PMCID: PMC10767890.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
  • +

    Si utiliza gget muscle, favor de citar también:

    + +
  • +
  • +

    Si utiliza gget opentargets, favor de citar también:

    +
      +
    • Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046. PMID: 36399499; PMCID: PMC9825572.
    • +
    +
  • +
  • +

    Si utiliza gget pdb, favor de citar también:

    +
      +
    • Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235. PMID: 10592235; PMCID: PMC102472.
    • +
    +
  • +
  • +

    Si utiliza gget ref o gget search, favor de citar también:

    +
      +
    • Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.
    • +
    +
  • +
  • +

    Si utiliza gget seq, favor de citar también:

    +
      +
    • +

      Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958. PMID: 36318249; PMCID: PMC9825606.

      +
    • +
    • +

      The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052

      +
    • +
    +
  • +
+
+

Descargo de responsabilidad

+

gget es tan preciso como la base de datos/servidores/APIs que utiliza. La exactitud o fiabilidad de los datos no es garantizada por ningún motivo. Los proveedores por ningún motivo seran responsables de (incluyendo, sin limite alguno) la calidad, ejecución, o comerciabilidad para cualquier propósito particular surgiendo del uso o la incapacidad de usar los datos.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + +
+ + diff --git a/searcher.js b/searcher.js new file mode 100644 index 00000000..d2b0aeed --- /dev/null +++ b/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') { 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/searchindex.js b/searchindex.js new file mode 100644 index 00000000..cd36678e --- /dev/null +++ b/searchindex.js @@ -0,0 +1 @@ +Object.assign(window.search, {"doc_urls":["en/introduction.html#welcome","en/introduction.html#gget-modules","en/updates.html#-whats-new","en/installation.html#installation","en/quick_start_guide.html#-quick-start-guide","en/alphafold.html#gget-alphafold-","en/alphafold.html#example","en/alphafold.html#tutorials","en/alphafold.html#-google-colab-tutorial","en/alphafold.html#-protein-structure-prediction-with-comparison-to-related-crystal-structures","en/alphafold.html#-gget-alphafold-faq","en/alphafold.html#references","en/archs4.html#gget-archs4-","en/archs4.html#examples","en/archs4.html#references","en/bgee.html#gget-bgee-","en/bgee.html#examples","en/bgee.html#references","en/blast.html#gget-blast-","en/blast.html#example","en/blast.html#references","en/blat.html#gget-blat-","en/blat.html#example","en/blat.html#references","en/cbio.html#gget-cbio-","en/cbio.html#search-subcommand-python-ggetcbio_search","en/cbio.html#plot-subcommand-python-ggetcbio_plot","en/cbio.html#examples","en/cbio.html#references","en/cellxgene.html#gget-cellxgene-","en/cellxgene.html#examples","en/cellxgene.html#references","en/cosmic.html#gget-cosmic-","en/cosmic.html#examples","en/cosmic.html#downloading-cosmic-databases","en/cosmic.html#references","en/diamond.html#gget-diamond-","en/diamond.html#example","en/diamond.html#references","en/elm.html#gget-elm-","en/elm.html#examples","en/elm.html#tutorials","en/elm.html#-general-gget-elm-demo","en/elm.html#-a-point-mutation-in-brca2-is-carcinogenic-due-to-the-loss-of-a-protein-interaction-motif","en/elm.html#-filter-gget-elm-results-based-on-disordered-protein-regions","en/elm.html#references","en/enrichr.html#gget-enrichr-","en/enrichr.html#examples","en/enrichr.html#tutorials","en/enrichr.html#references","en/gpt.html#gget-gpt-","en/gpt.html#example","en/info.html#gget-info-","en/info.html#example","en/info.html#references","en/muscle.html#gget-muscle-","en/muscle.html#example","en/muscle.html#references","en/mutate.html#gget-mutate-","en/mutate.html#examples","en/mutate.html#references","en/opentargets.html#gget-opentargets-","en/opentargets.html#examples","en/opentargets.html#references","en/pdb.html#gget-pdb-","en/pdb.html#examples","en/pdb.html#references","en/ref.html#gget-ref-","en/ref.html#examples","en/ref.html#references","en/search.html#gget-search-","en/search.html#example","en/search.html#references","en/setup.html#gget-setup-","en/setup.html#example","en/seq.html#gget-seq-","en/seq.html#examples","en/seq.html#references","en/contributing.html#welcome-to-ggets-contributing-guide","en/contributing.html#issues","en/contributing.html#create-a-new-issue","en/contributing.html#solve-an-issue","en/contributing.html#contribute-through-pull-requests","en/contributing.html#getting-started","en/contributing.html#commit-your-update","en/contributing.html#-self-review-the-following-before-creating-a-pull-request-","en/contributing.html#pull-request","en/contributing.html#your-pr-is-merged","en/code_of_conduct.html#contributor-covenant-code-of-conduct","en/code_of_conduct.html#our-pledge","en/code_of_conduct.html#our-standards","en/code_of_conduct.html#enforcement-responsibilities","en/code_of_conduct.html#scope","en/code_of_conduct.html#enforcement","en/code_of_conduct.html#enforcement-guidelines","en/code_of_conduct.html#1-correction","en/code_of_conduct.html#2-warning","en/code_of_conduct.html#3-temporary-ban","en/code_of_conduct.html#4-permanent-ban","en/code_of_conduct.html#attribution","en/cite.html#citation","en/cite.html#disclaimer","es/introduction.html#bienvenidos","es/introduction.html#módulos-gget","es/updates.html#-lo-más-reciente","es/installation.html#instalación","es/quick_start_guide.html#-guía-de-inicio-rápido","es/alphafold.html#gget-alphafold-","es/alphafold.html#ejemplo","es/alphafold.html#tutoriales","es/alphafold.html#-google-colab-tutorial","es/alphafold.html#-predicción-de-la-estructura-de-proteínas-con-comparación-con-estructuras-cristalinas-relacionadas","es/alphafold.html#-gget-alphafold---preguntas-más-frecuentes","es/alphafold.html#citar","es/archs4.html#gget-archs4-","es/archs4.html#ejemplo","es/archs4.html#citar","es/blast.html#gget-blast-","es/blast.html#por-ejemplo","es/blast.html#citar","es/blat.html#gget-blat-","es/blat.html#ejemplo","es/blat.html#citar","es/cellxgene.html#gget-cellxgene-","es/cellxgene.html#ejemplo","es/cellxgene.html#citar","es/cosmic.html#gget-cosmic-","es/cosmic.html#por-ejemplo","es/cosmic.html#descargar-bases-de-datos-cosmic","es/cosmic.html#citar","es/diamond.html#gget-diamond-","es/diamond.html#ejemplo","es/diamond.html#citar","es/elm.html#gget-elm-","es/elm.html#ejemplo","es/enrichr.html#gget-enrichr-","es/enrichr.html#ejemplo","es/gpt.html#gget-gpt-","es/gpt.html#por-ejemplo","es/info.html#gget-info-","es/info.html#por-ejemplo","es/muscle.html#gget-muscle-","es/muscle.html#por-ejemplo","es/mutate.html#gget-mutate-","es/mutate.html#ejemplos","es/pdb.html#gget-pdb-","es/pdb.html#por-ejemplo","es/ref.html#gget-ref-","es/ref.html#por-ejemplo","es/search.html#gget-search-","es/search.html#por-ejemplo","es/setup.html#gget-setup-","es/setup.html#por-ejemplo","es/seq.html#gget-seq-","es/seq.html#por-ejemplo","es/contributing.html#bienvenido-a-la-guía-de-contribución-de-gget","es/contributing.html#issues-asuntos","es/contributing.html#crear-un-nuevo-issue","es/contributing.html#resolver-un-issue","es/contributing.html#contribuir-a-través-de-pull-requests-prs","es/contributing.html#empezar","es/contributing.html#confirma-sus-actualizaciones","es/contributing.html#-auto-revisa-lo-siguiente-antes-de-crear-un-pr-","es/contributing.html#crear-un-pull-request-pr","es/contributing.html#su-pr-está-fusionado","es/code_of_conduct.html#código-de-conducta-convenido-para-contribuyentes","es/code_of_conduct.html#nuestro-compromiso","es/code_of_conduct.html#nuestros-estándares","es/code_of_conduct.html#aplicación-de-las-responsabilidades","es/code_of_conduct.html#alcance","es/code_of_conduct.html#aplicación","es/code_of_conduct.html#guías-de-aplicación","es/code_of_conduct.html#1-corrección","es/code_of_conduct.html#2-aviso","es/code_of_conduct.html#3-expulsión-temporal","es/code_of_conduct.html#4-expulsión-permanente","es/code_of_conduct.html#atribución","es/cite.html#citar","es/cite.html#descargo-de-responsabilidad"],"index":{"documentStore":{"docInfo":{"0":{"body":113,"breadcrumbs":2,"title":1},"1":{"body":172,"breadcrumbs":3,"title":2},"10":{"body":0,"breadcrumbs":5,"title":3},"100":{"body":1822,"breadcrumbs":3,"title":1},"101":{"body":31,"breadcrumbs":3,"title":1},"102":{"body":131,"breadcrumbs":2,"title":1},"103":{"body":280,"breadcrumbs":3,"title":2},"104":{"body":1493,"breadcrumbs":6,"title":3},"105":{"body":22,"breadcrumbs":2,"title":1},"106":{"body":417,"breadcrumbs":8,"title":4},"107":{"body":370,"breadcrumbs":4,"title":2},"108":{"body":202,"breadcrumbs":3,"title":1},"109":{"body":0,"breadcrumbs":3,"title":1},"11":{"body":55,"breadcrumbs":3,"title":1},"110":{"body":0,"breadcrumbs":5,"title":3},"111":{"body":0,"breadcrumbs":14,"title":12},"112":{"body":0,"breadcrumbs":7,"title":5},"113":{"body":62,"breadcrumbs":3,"title":1},"114":{"body":314,"breadcrumbs":4,"title":2},"115":{"body":91,"breadcrumbs":3,"title":1},"116":{"body":82,"breadcrumbs":3,"title":1},"117":{"body":296,"breadcrumbs":4,"title":2},"118":{"body":91,"breadcrumbs":4,"title":2},"119":{"body":54,"breadcrumbs":3,"title":1},"12":{"body":177,"breadcrumbs":4,"title":2},"120":{"body":234,"breadcrumbs":4,"title":2},"121":{"body":58,"breadcrumbs":3,"title":1},"122":{"body":43,"breadcrumbs":3,"title":1},"123":{"body":683,"breadcrumbs":4,"title":2},"124":{"body":119,"breadcrumbs":3,"title":1},"125":{"body":37,"breadcrumbs":3,"title":1},"126":{"body":595,"breadcrumbs":4,"title":2},"127":{"body":42,"breadcrumbs":4,"title":2},"128":{"body":21,"breadcrumbs":7,"title":5},"129":{"body":95,"breadcrumbs":3,"title":1},"13":{"body":72,"breadcrumbs":3,"title":1},"130":{"body":313,"breadcrumbs":4,"title":2},"131":{"body":106,"breadcrumbs":3,"title":1},"132":{"body":44,"breadcrumbs":3,"title":1},"133":{"body":404,"breadcrumbs":4,"title":2},"134":{"body":269,"breadcrumbs":3,"title":1},"135":{"body":399,"breadcrumbs":4,"title":2},"136":{"body":594,"breadcrumbs":3,"title":1},"137":{"body":418,"breadcrumbs":4,"title":2},"138":{"body":13,"breadcrumbs":4,"title":2},"139":{"body":261,"breadcrumbs":4,"title":2},"14":{"body":77,"breadcrumbs":3,"title":1},"140":{"body":97,"breadcrumbs":4,"title":2},"141":{"body":199,"breadcrumbs":4,"title":2},"142":{"body":87,"breadcrumbs":4,"title":2},"143":{"body":517,"breadcrumbs":4,"title":2},"144":{"body":72,"breadcrumbs":3,"title":1},"145":{"body":345,"breadcrumbs":4,"title":2},"146":{"body":286,"breadcrumbs":4,"title":2},"147":{"body":322,"breadcrumbs":4,"title":2},"148":{"body":178,"breadcrumbs":4,"title":2},"149":{"body":473,"breadcrumbs":4,"title":2},"15":{"body":134,"breadcrumbs":4,"title":2},"150":{"body":60,"breadcrumbs":4,"title":2},"151":{"body":68,"breadcrumbs":4,"title":2},"152":{"body":25,"breadcrumbs":4,"title":2},"153":{"body":184,"breadcrumbs":4,"title":2},"154":{"body":48,"breadcrumbs":4,"title":2},"155":{"body":74,"breadcrumbs":10,"title":7},"156":{"body":0,"breadcrumbs":5,"title":2},"157":{"body":37,"breadcrumbs":7,"title":4},"158":{"body":34,"breadcrumbs":6,"title":3},"159":{"body":0,"breadcrumbs":9,"title":6},"16":{"body":103,"breadcrumbs":3,"title":1},"160":{"body":69,"breadcrumbs":4,"title":1},"161":{"body":10,"breadcrumbs":6,"title":3},"162":{"body":156,"breadcrumbs":12,"title":9},"163":{"body":100,"breadcrumbs":8,"title":5},"164":{"body":25,"breadcrumbs":7,"title":4},"165":{"body":0,"breadcrumbs":9,"title":6},"166":{"body":79,"breadcrumbs":5,"title":2},"167":{"body":134,"breadcrumbs":5,"title":2},"168":{"body":85,"breadcrumbs":7,"title":4},"169":{"body":52,"breadcrumbs":4,"title":1},"17":{"body":100,"breadcrumbs":3,"title":1},"170":{"body":55,"breadcrumbs":4,"title":1},"171":{"body":30,"breadcrumbs":6,"title":3},"172":{"body":58,"breadcrumbs":5,"title":2},"173":{"body":78,"breadcrumbs":5,"title":2},"174":{"body":74,"breadcrumbs":6,"title":3},"175":{"body":48,"breadcrumbs":6,"title":3},"176":{"body":60,"breadcrumbs":4,"title":1},"177":{"body":1883,"breadcrumbs":3,"title":1},"178":{"body":54,"breadcrumbs":5,"title":3},"18":{"body":182,"breadcrumbs":4,"title":2},"19":{"body":67,"breadcrumbs":3,"title":1},"2":{"body":1071,"breadcrumbs":4,"title":2},"20":{"body":49,"breadcrumbs":3,"title":1},"21":{"body":136,"breadcrumbs":4,"title":2},"22":{"body":43,"breadcrumbs":3,"title":1},"23":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":45,"breadcrumbs":4,"title":2},"25":{"body":35,"breadcrumbs":6,"title":4},"26":{"body":172,"breadcrumbs":6,"title":4},"27":{"body":293,"breadcrumbs":3,"title":1},"28":{"body":309,"breadcrumbs":3,"title":1},"29":{"body":448,"breadcrumbs":4,"title":2},"3":{"body":20,"breadcrumbs":2,"title":1},"30":{"body":97,"breadcrumbs":3,"title":1},"31":{"body":32,"breadcrumbs":3,"title":1},"32":{"body":381,"breadcrumbs":4,"title":2},"33":{"body":33,"breadcrumbs":3,"title":1},"34":{"body":16,"breadcrumbs":5,"title":3},"35":{"body":90,"breadcrumbs":3,"title":1},"36":{"body":184,"breadcrumbs":4,"title":2},"37":{"body":97,"breadcrumbs":3,"title":1},"38":{"body":39,"breadcrumbs":3,"title":1},"39":{"body":223,"breadcrumbs":4,"title":2},"4":{"body":338,"breadcrumbs":6,"title":3},"40":{"body":232,"breadcrumbs":3,"title":1},"41":{"body":0,"breadcrumbs":3,"title":1},"42":{"body":0,"breadcrumbs":6,"title":4},"43":{"body":0,"breadcrumbs":11,"title":9},"44":{"body":0,"breadcrumbs":10,"title":8},"45":{"body":85,"breadcrumbs":3,"title":1},"46":{"body":316,"breadcrumbs":4,"title":2},"47":{"body":524,"breadcrumbs":3,"title":1},"48":{"body":5,"breadcrumbs":3,"title":1},"49":{"body":171,"breadcrumbs":3,"title":1},"5":{"body":240,"breadcrumbs":4,"title":2},"50":{"body":268,"breadcrumbs":4,"title":2},"51":{"body":10,"breadcrumbs":3,"title":1},"52":{"body":162,"breadcrumbs":4,"title":2},"53":{"body":95,"breadcrumbs":3,"title":1},"54":{"body":344,"breadcrumbs":3,"title":1},"55":{"body":119,"breadcrumbs":4,"title":2},"56":{"body":75,"breadcrumbs":3,"title":1},"57":{"body":37,"breadcrumbs":3,"title":1},"58":{"body":650,"breadcrumbs":4,"title":2},"59":{"body":330,"breadcrumbs":3,"title":1},"6":{"body":123,"breadcrumbs":3,"title":1},"60":{"body":21,"breadcrumbs":3,"title":1},"61":{"body":339,"breadcrumbs":4,"title":2},"62":{"body":635,"breadcrumbs":3,"title":1},"63":{"body":110,"breadcrumbs":3,"title":1},"64":{"body":201,"breadcrumbs":4,"title":2},"65":{"body":191,"breadcrumbs":3,"title":1},"66":{"body":52,"breadcrumbs":3,"title":1},"67":{"body":236,"breadcrumbs":4,"title":2},"68":{"body":128,"breadcrumbs":3,"title":1},"69":{"body":226,"breadcrumbs":3,"title":1},"7":{"body":0,"breadcrumbs":3,"title":1},"70":{"body":266,"breadcrumbs":4,"title":2},"71":{"body":48,"breadcrumbs":3,"title":1},"72":{"body":226,"breadcrumbs":3,"title":1},"73":{"body":87,"breadcrumbs":4,"title":2},"74":{"body":18,"breadcrumbs":3,"title":1},"75":{"body":107,"breadcrumbs":4,"title":2},"76":{"body":37,"breadcrumbs":3,"title":1},"77":{"body":246,"breadcrumbs":3,"title":1},"78":{"body":30,"breadcrumbs":6,"title":4},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":5,"title":3},"80":{"body":21,"breadcrumbs":5,"title":3},"81":{"body":20,"breadcrumbs":4,"title":2},"82":{"body":0,"breadcrumbs":6,"title":4},"83":{"body":41,"breadcrumbs":4,"title":2},"84":{"body":4,"breadcrumbs":4,"title":2},"85":{"body":101,"breadcrumbs":9,"title":7},"86":{"body":55,"breadcrumbs":4,"title":2},"87":{"body":12,"breadcrumbs":4,"title":2},"88":{"body":0,"breadcrumbs":6,"title":4},"89":{"body":49,"breadcrumbs":3,"title":1},"9":{"body":0,"breadcrumbs":9,"title":7},"90":{"body":75,"breadcrumbs":3,"title":1},"91":{"body":42,"breadcrumbs":4,"title":2},"92":{"body":34,"breadcrumbs":3,"title":1},"93":{"body":25,"breadcrumbs":3,"title":1},"94":{"body":13,"breadcrumbs":4,"title":2},"95":{"body":27,"breadcrumbs":4,"title":2},"96":{"body":42,"breadcrumbs":4,"title":2},"97":{"body":41,"breadcrumbs":5,"title":3},"98":{"body":26,"breadcrumbs":5,"title":3},"99":{"body":32,"breadcrumbs":3,"title":1}},"docs":{"0":{"body":"pypi version image Downloads Conda license status status Star on GitHub gget is a free, open-source command-line tool and Python package that enables efficient querying of genomic databases. gget consists of a collection of separate but interoperable modules, each designed to facilitate one type of database querying in a single line of code. NOTE: The databases queried by gget are continuously being updated which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary. If you encounter a problem, please upgrade to the latest gget version using pip install --upgrade gget. If the problem persists, please report the issue . Request a new feature gget info and gget seq are currently unable to fetch information for WormBase and FlyBase IDs (all other IDs are functioning normally). This issue arose due to a bug in Ensembl release 112. We appreciate Ensembl's efforts in addressing this issue and expect a fix soon. Thank you for your patience.","breadcrumbs":"Introduction » Welcome!","id":"0","title":"Welcome!"},"1":{"body":"These are the gget core modules. Click on any module to access detailed documentation. gget alphafoldPredict 3D protein structure from an amino acid sequence. gget archs4What is the expression of my gene in tissue X? gget bgeeFind all orthologs of a gene. gget blastBLAST a nucleotide or amino acid sequence. gget blatFind the genomic location of a nucleotide or amino acid sequence. gget cbioExplore a gene's expression in the specified cancers. gget cellxgeneGet ready-to-use single-cell RNA seq count matrices from certain tissues/ diseases/ etc. gget cosmicSearch for genes, mutations, and other factors associated with certain cancers. gget diamondAlign amino acid sequences to a reference. gget elmFind protein interaction domains and functions in an amino acid sequence. gget enrichrCheck if a list of genes is associated with a specific celltype/ pathway/ disease/ etc. gget infoFetch all of the information associated with an Ensembl ID. gget muscleAlign multiple nucleotide or amino acid sequences to each other. gget mutateMutate nucleotide sequences based on specified mutations. gget opentargetsExplore which diseases and drugs a gene is associated with. gget pdbFetch data from the Protein Data Bank (PDB) based on a PDB ID. gget refGet reference genomes from Ensembl. gget searchFind Ensembl IDs associated with the specified search word. gget seqFetch the nucleotide or amino acid sequence of a gene. If you use gget in a publication, please cite* : Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Read the article here: https://doi.org/10.1093/bioinformatics/btac836","breadcrumbs":"Introduction » gget modules","id":"1","title":"gget modules"},"10":{"body":"","breadcrumbs":"gget alphafold » 🔗 gget alphafold FAQ","id":"10","title":"🔗 gget alphafold FAQ"},"100":{"body":"license If you use gget in a publication, please cite: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 If using gget alphafold, please also cite: Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 And, if applicable: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034 If using gget archs4, please also cite: Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519 If using gget bgee, please also cite: Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793 If using gget blast, please also cite: Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712. If using gget blat, please also cite: Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518. If using gget cbio, please also cite: Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset. If using gget cellxgene, please also cite: Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/ If using gget cosmic, please also cite: Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903. If using gget diamond, please also cite: Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176 If using gget elm, please also cite: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 If using gget enrichr, please also cite: Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . If working with non-human/mouse datasets, please also cite: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483. If using gget info, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052 If using gget muscle, please also cite: Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169 If using gget opentargets, please also cite: Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572. If using gget pdb, please also cite: Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472. If using gget ref or gget search, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. If using gget seq, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"Citation Guidelines » Citation","id":"100","title":"Citation"},"101":{"body":"gget is only as accurate as the databases/servers/APIs it queries from. The accuracy or reliability of the data is not guaranteed or warranted in any way and the providers disclaim liability of any kind whatsoever, including, without limitation, liability for quality, performance, merchantability and fitness for a particular purpose arising out of the use, or inability to use the data.","breadcrumbs":"Citation Guidelines » Disclaimer","id":"101","title":"Disclaimer"},"102":{"body":"pypi version image Downloads Conda license status status Star on GitHub gget es un programa gratuito de código fuente abierta de Terminal y Python que permite la consulta eficiente de bases de datos genómicas. gget consiste en un conjunto de módulos separados pero interoperables, cada uno diseñado para facilitar un tipo de consulta de base de datos en una sola línea de código. Las bases de datos consultadas por gget se actualizan continuamente, lo que a veces cambia su estructura. Los módulos gget se prueban automáticamente cada dos semanas y se actualizan para que coincidan con las nuevas estructuras de la base de datos cuando es necesario. Si encuentra algún problema, actualice a la última versión de gget usando pip install --upgrade gget. Si el problema persiste, informa el problema . Solicitar una nueva función","breadcrumbs":"Introdución » ¡Bienvenidos!","id":"102","title":"¡Bienvenidos!"},"103":{"body":"Estos son los módulos principales de gget. Haga clic en cualquier módulo para acceder a la documentación detallada. gget alphafoldPredecir la estructura 3D de una proteína a partir de una secuencia de aminoácidos. gget archs4¿Cuál es la expresión de mi gen en el tejido X? gget bgeeEncontrar todos los ortólogos de un gen. gget blastRealizar un BLAST de una secuencia de nucleótidos o aminoácidos. gget blatEncontrar la ubicación genómica de una secuencia de nucleótidos o aminoácidos. gget cbioExplorar la expresión de un gen en los cánceres especificados. gget cellxgeneObtener matrices de conteo de ARN de células individuales listas para usar para ciertos tejidos/enfermedades/etc. gget cosmicBuscar genes, mutaciones y otros factores asociados con ciertos cánceres. gget diamondAlinear secuencias de aminoácidos a una referencia. gget elmEncontrar dominios y funciones de interacción de proteínas en una secuencia de aminoácidos. gget enrichrVerificar si una lista de genes está asociada con un tipo celular específico/ vía/ enfermedad/ etc. gget infoRecuperar toda la información asociada con un ID de Ensembl. gget muscleAlinear múltiples secuencias de nucleótidos o aminoácidos entre sí. gget mutateMutar secuencias de nucleótidos según mutaciones específicas. gget opentargetsExplorar qué enfermedades y medicamentos están asociados con un gen. gget pdbRecuperar datos de la Base de Datos de Proteínas (PDB) según un ID de PDB. gget refObtener genomas de referencia de Ensembl. gget searchEncontrar IDs de Ensembl asociados con la palabra de búsqueda especificada. gget seqRecuperar la secuencia de nucleótidos o aminoácidos de un gen. Si usa gget en una publicación, por favor cite* : Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lea el artículo aquí: https://doi.org/10.1093/bioinformatics/btac836 Gracias a Victor Garcia-Ruiz y Anna Karen Orta por su ayuda con la traduccion del sitio web.","breadcrumbs":"Introdución » Módulos gget","id":"103","title":"Módulos gget"},"104":{"body":"Versión ≥ 0.28.6 (2 de junio de 2024): Nuevo módulo: gget mutate gget cosmic : Ahora puedes descargar bases de datos completas de COSMIC utilizando el argumento download_cosmic gget ref : Ahora puede obtener la ensambladura del genoma GRCh27 usando species='human_grch37' gget search : Ajusta el acceso a los datos humanos a la estructura de la versión 112 de Ensembl (corrige issue 129 ) Version ≥ 0.28.5 (May 29, 2024): Retirado debido a un error con 'logging' en gget.setup(\"alphafold\") + mutaciones de inversión en gget mutate solo invierten la cadena en lugar de también calcular la hebra complementaria Versión ≥ 0.28.4 (31 de enero de 2024): gget setup : soluciona el error con la ruta del archivo al ejecutar gget.setup(\"elm\") en el sistema operativo Windows. Versión ≥ 0.28.3 (22 de enero de 2024): gget search y gget ref ahora también admiten hongos 🍄, protistas 🌝 y metazoos de invertebrados 🐝 🐜 🐌 🐙 (además de vertebrados y plantas) Nuevo módulo: gget cosmic gget enrichr : corrige puntos de dispersión duplicados en el gráfico cuando los nombres de las rutas están duplicados gget elm : Se cambió el nombre de la columna de resultados orto 'Ortholog_UniProt_ID' a 'Ortholog_UniProt_Acc' para reflejar correctamente el contenido de la columna, que son accesos de UniProt. 'UniProt ID' se cambió a 'UniProt Acc' en la documentación para todos los módulos gget. Se cambió el nombre de la columna de resultados ortogonales 'motif_in_query' a 'motif_inside_subject_query_overlap'. Se agregó información del dominio de interacción a los resultados (nuevas columnas: \"InteractionDomainId\", \"InteractionDomainDescription\", \"InteractionDomainName\"). La cadena de expresiones regulares para coincidencias de expresiones regulares se encapsuló de la siguiente manera: \"(?=(regex))\" (en lugar de pasar directamente la cadena de expresiones regulares \"regex\") para permitir capturar todas las apariciones de un motivo cuando la longitud del motivo es variable y hay son repeticiones en la secuencia ( https://regex101.com/r/HUWLlZ/1 ). gget setup : utilice el argumento out para especificar un directorio en el que se descargará la base de datos ELM. Completa esta solicitud de función . gget Diamond : El comando DIAMOND ahora se ejecuta con el indicador --ignore-warnings, lo que permite secuencias de nicho, como secuencias de aminoácidos que solo contienen caracteres de nucleótidos y secuencias repetidas. Esto también es válido para las alineaciones DIAMOND realizadas dentro de gget elm . Cambio de back-end de gget ref y gget search : la versión actual de Ensembl se obtiene del nuevo archivo de versión en el sitio FTP de Ensembl para evitar errores durante la carga de nuevos lanzamientos. gget search : Los resultados del enlace FTP (--ftp) se guardan en formato de archivo txt en lugar de json. Se corrigieron enlaces URL al resumen de genes de Ensembl para especies con un nombre de subespecie e invertebrados. gget ref : Cambios de back-end para aumentar la velocidad. Nuevo argumento: list_iv_species para enumerar todas las especies de invertebrados disponibles (se puede combinar con el argumento release para obtener todas las especies disponibles de una liberación específica de Ensembl) Versión ≥ 0.28.2 (15 de noviembre de 2023): gget info : devuelve un mensaje de error cuando el servidor NCBI falla por un motivo distinto a un error de recuperación (esto es un error en el lado del servidor en lugar de un error con gget) Reemplace el argumento obsoleto 'texto' para los métodos de tipo find() siempre que se usen con la dependencia BeautifulSoup gget elm : Elimina instancias de falsos positivos y verdaderos negativos de los resultados devueltos. gget elm : agrega el argumento expand Versión ≥ 0.28.0 (5 de noviembre de 2023): Documentación actualizada de gget muscle para agregar un tutorial sobre cómo visualizar secuencias con diferentes longitudes de nombres de secuencia + ligero cambio en la visualización devuelta para que sea un poco más sólida ante diferentes nombres de secuencia gget muscle ahora también permite una lista de secuencias como entrada (como alternativa a proporcionar la ruta a un archivo FASTA) Permitir filtro de genes faltante para gget cellxgene (corrige error ) gget seq : permite nombres de genes faltantes (correccione [https://github.com/pachterlab/gget/issues/107](https://github.com/pachterlab/gget /números/107)) Nuevos argumentos para gget enrichr : use el argumento kegg_out y kegg_rank para crear una imagen de la vía KEGG con los genes del análisis de enriquecimiento resaltados (gracias a [este PR](https ://github.com/pachterlab/gget/pull/106) por Noriaki Sato ) Nuevos módulos: gget elm y gget Diamond Versión ≥ 0.27.9 (7 de agosto de 2023): Nuevos argumentos para gget enrichr : use el argumento background_list para proporcionar una lista de genes 'background' gget search ahora también busca sinónimos Ensembl (además de nombres y descripciones de genes) para obtener resultados de búsqueda más completos (gracias a Samuel Klein por la sugerencia ) Versión ≥ 0.27.8 (12 de julio de 2023): Nuevo argumento para gget search : especifique la versión de Ensembl desde la cual se obtiene la información con -r --release Se corrigió un error en gget pdb (este error se introdujo en la versión 0.27.5) Versión ≥ 0.27.7 (15 de mayo de 2023): Se movieron las dependencias para los módulos gget gpt y gget cellxgene de los requisitos instalados automáticamente a gget setup Dependencias gget alphafold actualizadas para compatibilidad con Python >= 3.10 Se agregó el argumento census_version a gget cellxgene Versión ≥ 0.27.6 (1 de mayo de 2023) (TIRO debido a problemas con las dependencias -> reemplazada por la versión 0.27.7): Gracias a el PR de Tomás Di Domenico : gget search ahora también puede consultar los ID de plantas 🌱 Ensembl Nuevo módulo: gget cellxgene Versión ≥ 0.27.5 (6 de abril de 2023): Se actualizó gget search para que funcione correctamente con la nueva versión de Pandas 2.0.0 (lanzado el 3 de abril de 2023), además de versiones anteriores de Pandas Se actualizó gget info con nuevos banderas uniprot y ncbi que permiten desactivar los resultados de estas bases de datos de forma independiente para ahorrar tiempo de ejecución (nota: el indicador ensembl_only quedó obsoleto) Todos los módulos gget ahora tienen una bandera -q / --quiet (para Python: verbose=False) para desactivar la información de progreso Versión ≥ 0.27.4 (19 de marzo de 2023): Nuevo módulo: gget gpt Versión ≥ 0.27.3 (11 de marzo de 2023): gget info excluye los ID de PDB de forma predeterminada para aumentar la velocidad (los resultados de PDB se pueden incluir usando la marca --pdb / pdb=True). Versión ≥ 0.27.2 (1 de enero de 2023): Se actualizó gget alphafold a DeepMind's AlphaFold v2.3.0 (incluidos los nuevos argumentos multimer_for_monomer y multimer_recycles) Versión ≥ 0.27.0 (10 de diciembre de 2022): Se actualizó gget alphafold para que coincida con los cambios recientes de DeepMind Número de versión actualizado para que coincida con la edad de el creador de gget siguiendo una larga tradición de laboratorio de Pachter Versión ≥ 0.3.13 (11 de noviembre de 2022): Tiempo de ejecución reducido para gget enrichr y gget archs4 cuando se usa con ID de Ensembl Versión ≥ 0.3.12 (10 de noviembre de 2022): gget info ahora también devuelve datos de localización subcelular de UniProt El nuevo indicador gget info ensembl_only devuelve solo los resultados de Ensembl Tiempo de ejecución reducido para gget info y gget seq Versión ≥ 0.3.11 (7 de septiembre de 2022): Nuevo módulo: gget pdb Versión ≥ 0.3.10 (2 de septiembre de 2022): gget alphafold ahora también devuelve valores pLDDT para generar gráficos sin volver a ejecutar el programa (consulte también las preguntas frecuentes de gget alphafold ) Versión ≥ 0.3.9 (25 de agosto de 2022): Instrucciones de instalación de openmm actualizadas para gget alphafold Versión ≥ 0.3.8 (12 de agosto de 2022): Se corrigieron los requisitos de versión de mysql-connector-python Versión ≥ 0.3.7 (9 de agosto de 2022): NOTA: El sitio FTP de Ensembl cambió su estructura el 8 de agosto de 2022. Actualice a la versión gget ≥ 0.3.7 si usa obtener ref Versión ≥ 0.3.5 (6 de agosto de 2022): Nuevo módulo: gget alphafold Versión ≥ 0.2.6 (7 de julio de 2022): ¡ gget ref ahora admite genomas de plantas! 🌱 Versión ≥ 0.2.5 (30 de junio de 2022): NOTA: UniProt cambió la estructura de su API el 28 de junio de 2022. Actualice a la versión gget ≥ 0.2.5 si usa alguno de los módulos que consultan datos de UniProt ( gget info y gget seq ). Versión ≥ 0.2.3: (26 de junio de 2022): JSON ahora es el formato de regreso predeterminado para la Terminal para los módulos que anteriormente devolvían el formato de data frame (CSV) (el formato se puede convertir a data frame/CSV usando la bandera [-csv][--csv]). El formato data frame/CSV sigue siendo el formato de regreso predeterminada para Python (Jupyter Lab/Google Colab) (y se puede convertir a JSON con json=True). Para todos los módulos, el primer parámetro requerido se convirtió en un parámetro posicional y ya no debe nombrarse en la línea de comandos, p. ej. gget ref -s human → gget ref human. gget info: [--expand] está en desuso. El módulo ahora siempre devolverá toda la información disponible. Ligeros cambios en la salida devuelta por gget info, incluida la devolución de los ID de Ensembl versionados. gget info y gget seq ahora son compatibles con las IDs de WormBase y FlyBase. Ahora también se pueden ingresar IDs de tipo Ensembl a gget archs4 y gget enrichr con la bandera [-e][--ensembl] (ensembl=True para Python (Jupyter Lab / Google Colab)). El parámetro seqtype de gget seq fue reemplazado por la bandera [-t][--translate] (translate=True/False para Python (Jupyter Lab / Google Colab)) que devolverá secuencias de nucleótidos (False) o aminoácidos (True). El parámetro seqtype de gget search se renombró a id_type (aún tomando los mismos parámetros 'gene' o 'transcript').","breadcrumbs":"¡Lo más reciente! » ✨ ¡Lo más reciente!","id":"104","title":"✨ ¡Lo más reciente!"},"105":{"body":"pypi version image pip install --upgrade gget Alternativa: conda install -c bioconda gget Para uso en Jupyter Lab / Google Colab: import gget","breadcrumbs":"Instalación » Instalación","id":"105","title":"Instalación"},"106":{"body":"Terminal: # Obtenga todos los FTP de anotaciones y referencias de Homo sapiens de la última versión de Ensembl\n$ gget ref homo_sapiens # Obtenga IDs de Ensembl de genes humanos con \"ace2\" o \"angiotensin converting enzyme 2\" en su nombre/descripción\n$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2' # Busque el gen ENSG00000130234 (ACE2) y su transcripción ENST00000252519\n$ gget info ENSG00000130234 ENST00000252519 # Obtenga la secuencia de aminoácidos de la transcripción canónica del gen ENSG00000130234\n$ gget seq --translate ENSG00000130234 # Rápidamente encuentra la ubicación genómica de la secuencia de aminoácidos\n$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # BLAST la secuencia de aminoácidos\n$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Alinee múltiples secuencias de nucleótidos o aminoácidos entre sí (también acepta la ruta al archivo FASTA) $ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Alinee una o más secuencias de aminoácidos con una referencia (que contiene una o más secuencias) (BLAST local) (también acepta rutas a archivos FASTA) $ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Alinea secuencias de nucleótidos o aminoácidos en un archivo FASTA\n$ gget muscle path/to/file.fa # Use Enrichr para un análisis de ontología de una lista de genes\n$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P # Obtene la expresión en tejido humano del gen ACE2\n$ gget archs4 -w tissue ACE2 # Obtenga la estructura de la proteína (en formato PDB) de ACE2 (ID de PDB devuelta por gget info)\n$ gget pdb 1R42 -o 1R42.pdb # Encuentre motivos lineales eucarióticos (ELM) en una secuencia de aminoácidos\n$ gget setup elm # solo debe ejecutarse una vez\n$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Obtene una matriz de recuento de scRNAseq (formato AnnData) basada en genes, tejidos y tipos de células especificados (especie predeterminada: humano)\n$ gget setup cellxgene # solo debe ejecutarse una vez\n$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad # Predice la estructura proteica de GFP a partir de su secuencia de aminoácidos\n$ gget setup alphafold # solo debe ejecutarse una vez\n$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK Python (Jupyter Lab / Google Colab): import gget\ngget.ref(\"homo_sapiens\")\ngget.search([\"ace2\", \"angiotensin converting enzyme 2\"], \"homo_sapiens\")\ngget.info([\"ENSG00000130234\", \"ENST00000252519\"])\ngget.seq(\"ENSG00000130234\", translate=True)\ngget.blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"])\ngget.diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"], database=\"ontology\", plot=True)\ngget.archs4(\"ACE2\", which=\"tissue\")\ngget.pdb(\"1R42\", save=True) gget.setup(\"elm\") # solo debe ejecutarse una vez\northo_df, regex_df = gget.elm(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\") gget.setup(\"cellxgene\") # solo debe ejecutarse una vez\ngget.cellxgene(gene = [\"ACE2\", \"SLC5A1\"], tissue = \"lung\", cell_type = \"mucus secreting cell\") gget.setup(\"alphafold\") # solo debe ejecutarse una vez\ngget.alphafold(\"MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK\") Use a gget con R usando reticulate : system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") gget$ref(\"homo_sapiens\")\ngget$search(list(\"ace2\", \"angiotensin converting enzyme 2\"), \"homo_sapiens\")\ngget$info(list(\"ENSG00000130234\", \"ENST00000252519\"))\ngget$seq(\"ENSG00000130234\", translate=TRUE)\ngget$blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$muscle(list(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"), out=\"out.afa\")\ngget$diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"), database=\"ontology\")\ngget$archs4(\"ACE2\", which=\"tissue\")\ngget$pdb(\"1R42\", save=TRUE) Más ejemplos","breadcrumbs":"Guía de inicio rápido » 🪄 Guía de inicio rápido","id":"106","title":"🪄 Guía de inicio rápido"},"107":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Predice la estructura en 3D de cualquier proteína derivada de su secuencia de aminoácidos usando una versión simplificada del algoritmo AlphaFold2 de DeepMind , originalmente producido y publicado para AlphaFold Colab . Resultado: Predicción de la estructura (en formato PDB) y el errór de alineación (en formato json). Antes de usar gget alphafold por primera vez: Instale openmm v7.5.1 (o v7.7.0 para Python >= 3.10) ejecutando el siguiente comando desde la línea de comando: conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1 (reemplazar con openmm=7.7.0 para Python >= 3.10) Recomendación: siga con conda update -qy conda para actualizar conda a la última versión. Corre gget setup alphafold / gget.setup(\"alphafold\") (ver también gget setup ). Al ejecutar gget setup alphafold / gget.setup(\"alphafold\") se descargará e instalará la última versión de AlphaFold2 alojada en el AlphaFold GitHub Repo . Puede volver a ejecutar este comando en cualquier momento para actualizar el software cuando hay una nueva versión de AlphaFold. Parámetro posicional sequence Secuencia de aminoácidos (str), o una lista de secuencias ( gget alphafold automaticamente usa el algoritmo del multímero si múltiples secuencias son ingresadas ), o una ruta a un archivo formato FASTA. Parámetros optionales -mr --multimer_recycles El algoritmo de multímero se reciclara hasta que las predicciones dejen de cambiar, el limite de ciclos esta indicado aqui. Por defecto: 3 Para obtener más exactitud, ajusta este limite a 20 (al costo de ejecuciones mas tardadas). -o --out Ruta a la carpeta para guardar los resultados de la predicción (str). Por defecto: \"./[fecha_tiempo]_gget_alphafold_prediction\". Banderas -mfm --multimer_for_monomer Usa el algoritmo de multímero para un monómero. -r --relax Relaja el mejor modelo con el algoritmo AMBER. -q --quiet Uso limitado para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False. plot Solo para Python. plot=True provée una visualización interactiva de la predicción con el errór de alineación en 3D con py3Dmol y matplotlib (por defecto: True). show_sidechains Solo para Python. show_sidechains=True incluye las cadenas laterales de proteínas en el esquema (por defecto: True).","breadcrumbs":"gget alphafold » gget alphafold 🪢","id":"107","title":"gget alphafold 🪢"},"108":{"body":"# Predice la estructura de una proteína derivada de su secuencia de aminoácidos\ngget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo\ngget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.\ngget pdb 3UQ3 -o 3UQ3.pdb\ngget pdb 2K42 -o 2K42.pdb # Python\n# Predice la estructura de una proteína derivada de su secuencia de aminoácidos\ngget.alphafold(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\") # Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo\ngget.blast(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\", database=\"pdbaa\") # Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.\ngget.pdb(\"3UQ3\", save=True)\ngget.pdb(\"2K42\", save=True) → gget alphafold produce la estructura predecida (en formato PDB) y el errór de alineación (en formato json) en una nueva carpeta (\"./[fecha_tiempo]_gget_alphafold_prediction\"). Este ejemplo demuestra como usar gget blast y gget pdb para correr un análisis comparativo. Los archivos PDB se pueden ver en 3D con RCSB 3D view , o usando programas como PyMOL o Blender . Para comparar múltiples archivos PDB, use RCSB alignment . Python también produce esquemas interactivos , los cuales se pueden generar de los archivos PDB y JSON, como es describido en gget alphafold FAQ Q4.","breadcrumbs":"gget alphafold » Ejemplo","id":"108","title":"Ejemplo"},"109":{"body":"","breadcrumbs":"gget alphafold » Tutoriales","id":"109","title":"Tutoriales"},"11":{"body":"If you use gget alphafold in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 And, if applicable: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034","breadcrumbs":"gget alphafold » References","id":"11","title":"References"},"110":{"body":"","breadcrumbs":"gget alphafold » 🔗 Google Colab tutorial","id":"110","title":"🔗 Google Colab tutorial"},"111":{"body":"","breadcrumbs":"gget alphafold » 🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas","id":"111","title":"🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas"},"112":{"body":"","breadcrumbs":"gget alphafold » 🔗 gget alphafold - preguntas más frecuentes","id":"112","title":"🔗 gget alphafold - preguntas más frecuentes"},"113":{"body":"Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 Y, si corresponde: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034","breadcrumbs":"gget alphafold » Citar","id":"113","title":"Citar"},"114":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no es especificado de otra manera. Las banderas son designadas como cierto o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede obtener desde Terminal con la bandera -h --help. Encuentra los genes más correlacionados a un gen de interés, o bién, encuentra los tejidos donde un gen se expresa usando la base de datos ARCHS4 . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional gene Nombre corto (símbolo del gen) del gen de interés, p. ej. STAT4. Alternativamente: usa la bandera --ensembl para ingresar un ID tipo Ensembl, p. ej. ENSG00000138378. Parámetros optionales -w --which 'correlation' (correlación; se usa por defecto) o 'tissue' (tejido). 'correlation' produce una tabla que contiene los 100 genes más correlacionados con el gen de interés. La correlación de Pearson se calcula de todas las muestras y tejidos en ARCHS4 . 'tissue' produce un atlas de expresión tisular calculado de todas las muestras humanas o de ratón (según lo definido usando el parámetro --species (especies)) en ARCHS4 . -s --species 'human' (humano; se usa por defecto) o 'mouse' (ratón). Define si se usan muestras humanas o de ratón de ARCHS4 . (Solo aplica para el atlas de expresión tisular.) -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, use save=True para guardar los resultados en el directorio de trabajo actual. Banderas -e --ensembl Usa esta bandera si gene se ingresa como ID tipo Ensembl. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para obtener los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget archs4 » gget archs4 🐁","id":"114","title":"gget archs4 🐁"},"115":{"body":"gget archs4 ACE2 # Python\ngget.archs4(\"ACE2\") → Produce los 100 genes más correlacionados con el gen ACE2: gene_symbol pearson_correlation SLC5A1 0.579634 CYP2C18 0.576577 . . . . . . gget archs4 -w tissue ACE2 # Python\ngget.archs4(\"ACE2\", which=\"tissue\") → Produce la expresión tisular de ACE2 (por defecto, se utilizan datos humanos): id min q1 median q3 max System.Urogenital/Reproductive System.Kidney.RENAL CORTEX 0.113644 8.274060 9.695840 10.51670 11.21970 System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL 0.113644 5.905560 9.570450 13.26470 13.83590 . . . . . . . . . . . . . . . . . . Consulte este tutorial de Dave Tang, quien escribió un script R para crear esta visualización con los resultados de gget archs4 en formato JSON: image Más ejemplos","breadcrumbs":"gget archs4 » Ejemplo","id":"115","title":"Ejemplo"},"116":{"body":"Si utiliza gget archs4 en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519","breadcrumbs":"gget archs4 » Citar","id":"116","title":"Citar"},"117":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. BLAST una secuencia de nucleótidos o aminoácidos a cualquier base de datos BLAST . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional sequence Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt. Parámetros optionales -p --program 'blastn', 'blastp', 'blastx', 'tblastn', o 'tblastx'. Por defecto: 'blastn' para secuencias de nucleótidos; 'blastp' para secuencias de aminoácidos. -db --database 'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', o 'pdbnt'. Por defecto: 'nt' para secuencias de nucleótidos; 'nr' para secuencias de aminoácidos. Más información sobre los bases de datos BLAST -l --limit Limita el número de resultados producidos. Por defecto: 50. -e --expect Define el umbral de 'expect value' . Por defecto: 10.0. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -lcf --low_comp_filt Activa el 'low complexity filter' (filtro de baja complejidad). -mbo --megablast_off Desactiva el algoritmo MegaBLAST. Por defecto: MegaBLAST esta activado (solo aplicable para blastn). -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget blast » gget blast 💥","id":"117","title":"gget blast 💥"},"118":{"body":"gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blast(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\") → Produce los resultados BLAST de la secuencia de interés. gget blast automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el programa BLAST en blastp con la base de datos nr . Description Scientific Name Common Name Taxid Max Score Total Score Query Cover ... PREDICTED: gamma-aminobutyric acid receptor-as... Colobus angolensis palliatus NaN 336983 180 180 100% ... . . . . . . . . . . . . . . . . . . . . . ... BLAST desde un archivo .fa o .txt: gget blast fasta.fa # Python\ngget.blast(\"fasta.fa\") → Produce los resultados BLAST de la primera secuencia contenida en el archivo 'fasta.fa'. Más ejemplos","breadcrumbs":"gget blast » Por ejemplo","id":"118","title":"Por ejemplo"},"119":{"body":"Si utiliza gget blast en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.","breadcrumbs":"gget blast » Citar","id":"119","title":"Citar"},"12":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Find the most correlated genes to a gene of interest or find the gene's tissue expression atlas using ARCHS4 . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument gene Short name (gene symbol) of gene of interest, e.g. STAT4. Alternatively: use flag --ensembl to input an Ensembl gene IDs, e.g. ENSG00000138378. Optional arguments -w --which 'correlation' (default) or 'tissue'. 'correlation' returns a gene correlation table that contains the 100 most correlated genes to the gene of interest. The Pearson correlation is calculated over all samples and tissues in ARCHS4 . 'tissue' returns a tissue expression atlas calculated from human or mouse samples (as defined by 'species') in ARCHS4 . -s --species 'human' (default) or 'mouse'. Defines whether to use human or mouse samples from ARCHS4 . (Only for tissue expression atlas.) -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -e --ensembl Add this flag if gene is given as an Ensembl gene ID. -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget archs4 » gget archs4 🐁","id":"12","title":"gget archs4 🐁"},"120":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Encuentra la ubicación genómica de una secuencia de nucleótidos o aminoácidos usando BLAT . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional sequence Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt. Parámetros optionales -st --seqtype 'DNA', 'protein', 'translated%20RNA', o 'translated%20DNA'. Por defecto: 'DNA' para secuencias de nucleótidos; 'protein' para secuencias de aminoácidos. -a --assembly Ensamblaje del genoma. 'human' (hg38) (se usa por defecto), 'mouse' (mm39) (ratón), 'zebrafish' (taeGut2) (pinzón cebra), o cualquiera de los ensamblajes de especies disponibles aquí (use el nombre corto del ensamblado, p. ej. 'hg38'). -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget blat » gget blat 🎯","id":"120","title":"gget blat 🎯"},"121":{"body":"gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blat(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\", assembly=\"taeGut2\") → Produce los resultados de BLAT para el ensamblaje taeGut2 (pinzón cebra). En este ejemplo, gget blat automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el tipo de secuencia (--seqtype) como proteína . genome query_size aligned_start aligned_end matches mismatches %_aligned ... taeGut2 88 12 88 77 0 87.5 ... Màs ejemplos","breadcrumbs":"gget blat » Ejemplo","id":"121","title":"Ejemplo"},"122":{"body":"Si utiliza gget blat en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.","breadcrumbs":"gget blat » Citar","id":"122","title":"Citar"},"123":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Query data de la base de datos CZ CELLxGENE Discover usando CZ CELLxGENE Discover Census . Produce: Un objeto AnnData que contiene la matriz de recuentos de genes y los metadatos de resultados de single cell RNA-seq de los tejidos/genes/etcetera previamente definidos. Antes de usar gget cellxgene por primera vez, corre gget setup cellxgene / gget.setup(\"cellxgene\") (ver también gget setup ). Parámetros opcionales -s --species 'homo_sapiens' o 'mus_musculus'. Por defecto: 'homo_sapiens'. -g --gene Str o lista de genes de interés o ID(s) tipo Ensembl. Por defecto: None (ninguno). Atención: Utilice la bandera -e / --ensembl (Python: ensembl=True) cuando ingrese ID(s) tipo Ensembl. Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de genes. -cv --census_version Versión del CZ CELLxGENE Discover Census (str), p. ej. \"2023-05-15\", o \"latest\" (ultima) o \"stable\" (estable). Por defecto: \"stable\" (estable). -cn --column_names Lista de columnas de metadatos a obtener (almacenadas en AnnData.obs). Por defecto: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type'] Para más opciones, ver: https://api.cellxgene.cziscience.com/curation/ui/#/ -> 'Schemas' -> 'dataset' -o --out Ruta al archivo para guardar el objeto AnnData formato .h5ad (o .csv con bandera -mo / --meta_only). ¡Requerido cuando se usa desde Terminal! Banderas -e --ensembl Usa esta bandera si gene se ingresa como ID tipo Ensembl. -mo --meta_only Solo produce la tabla (Dataframe) con metadatos (corresponde a AnnData.obs). -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa. Parámetros opcionales correspondientes a los atributos de metadatos de CZ CELLxGENE Discover --tissue Str o lista de tejido(s), p. ej. ['lung', 'blood']. Por defecto: None. Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de tejidos. --cell_type Str o lista de tipo(s) de célula(s), p. ej. ['mucus secreting cell', 'neuroendocrine cell']. Por defecto: None. Ver https://cellxgene.cziscience.com/gene-expression y seleccione un tejido para ejemplos de tipos de células. --development_stage Str o lista de etapa(s) de desarrollo. Por defecto: None. --disease Str o lista de enfermedad(es). Por defecto: None. --sex Str o lista de sexo(s), p. ej. 'female' (femenina). Por defecto: None. --dataset_id Str o lista de CELLxGENE ID(s). Por defecto: None. --tissue_general_ontology_term_id Str o lista de tejido(s) del tipo high-level UBERON ID. Por defecto: None. Tejidos y sus IDs tipo UBERON se enumeran aquí . --tissue_general Str o lista de tejido(s) del tipo high-level. Por defecto: None. Tejidos y sus IDs de UBERON se enumeran aquí . --tissue_ontology_term_id Str o lista de ID(s) de 'tissue ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --assay_ontology_term_id Str o lista de ID(s) de 'assay ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --assay Str o lista de 'assays' (métodos) como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --cell_type_ontology_term_id Str o lista de ID(s) de 'celltype ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --development_stage_ontology_term_id Str o lista de ID(s) de 'development stage ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --disease_ontology_term_id Str o lista de ID(s) de 'disease ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --donor_id Str o lista de ID(s) de 'donor' (donador) como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --self_reported_ethnicity_ontology_term_id Str o lista de ID(s) de 'self-reported ethnicity ontology' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --self_reported_ethnicity Str o lista de etnias autoinformadas como están definidas en el esquema de datos del CELLxGENE . Por defecto: None. --sex_ontology_term_id Str o lista de ID(s) de 'sex ontology' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --suspension_type Str o lista de tipo(s) de suspensión como están definidos en el esquema de datos del CELLxGENE . Por defecto: None.","breadcrumbs":"gget cellxgene » gget cellxgene 🍱","id":"123","title":"gget cellxgene 🍱"},"124":{"body":"gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad # Python\nadata = gget.cellxgene( gene = [\"ACE2\", \"ABCA1\", \"SLC5A1\"], tissue = \"lung\", cell_type = [\"mucus secreting cell\", \"neuroendocrine cell\"]\n)\nadata → Produce un objeto AnnData que contiene la matriz de recuentos de scRNAseq de los genes ACE2, ABCA1 y SLC5A1 en 3322 células secretoras de mucosidad y neuroendocrinas pulmonares humanas y sus metadatos correspondientes. Obtiene solo los metadatos (corresponde a AnnData.obs): gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv # Python\ndf = gget.cellxgene( meta_only = True, gene = \"ENSMUSG00000015405\", ensembl = True, tissue = \"lung\", species = \"mus_musculus\"\n)\ndf → Produce solo los metadatos de los conjuntos de datos de ENSMUSG00000015405 (ACE2), los cuales corresponden a células pulmonares murinas. Ver también: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html","breadcrumbs":"gget cellxgene » Ejemplo","id":"124","title":"Ejemplo"},"125":{"body":"Si utiliza gget cellxgene en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/","breadcrumbs":"gget cellxgene » Citar","id":"125","title":"Citar"},"126":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Busque genes, mutaciones, etc. asociados con cánceres utilizando la base de datos COSMIC (Catálogo de mutaciones somáticas en cáncer). Produce: JSON (línea de comandos) o marco de datos/CSV (Python) cuando download_cosmic=False. Cuando download_cosmic=True, descarga la base de datos solicitada en la carpeta especificada. Este módulo fue escrito en parte por @AubakirovArman (consulta de información) y @josephrich98 (descarga de base de datos). NOTA: Se aplican tarifas de licencia para el uso comercial de COSMIC. Puede leer más sobre la concesión de licencias de datos COSMIC aquí . Parámetro posicional (para consultar información) searchterm Término de búsqueda, que puede ser una mutación, un nombre de gen (o ID de Ensembl), una muestra, etc. Ejemplos para los argumentos de searchterm y entidad: searchterm entidad EGFR mutaciones -> Encuentra mutaciones en el gen EGFR asociadas con el cáncer v600e mutaciones -> Encuentra genes para los cuales una mutación v600e está asociada con el cáncer COSV57014428 mutaciones -> Encuentra mutaciones asociadas con esta ID de mutaciones COSMIC EGFR genes -> Obtiene el número de muestras, mutaciones simples/codificantes y fusiones observadas en COSMIC para EGFR prostate cáncer -> Obtiene el número de muestras probadas y mutaciones para el cáncer de próstata prostate sitio_tumoral -> Obtiene el número de muestras probadas, genes, mutaciones, fusiones, etc. con 'próstata' como sitio de tejido primario ICGC estudios -> Obtiene el código de proyecto y descripciones de todos los estudios de ICGC (Consortio Internacional del Genoma del Cáncer) EGFR pubmed -> Encuentra publicaciones de PubMed sobre EGFR y cáncer ICGC muestras -> Obtiene metadatos sobre todas las muestras de ICGC (Consortio Internacional del Genoma del Cáncer) COSS2907494 muestras -> Obtiene metadatos sobre esta ID de muestra COSMIC (tipo de cáncer, tejido, # genes analizados, # mutaciones, etc.) NOTA: (Solo Python) Establezca en None cuando se descarguen bases de datos COSMIC con download_cosmic=True. Parámetros opcionales (para consultar información) -e --entity 'mutations' (predeterminado), 'genes', 'cáncer', 'sitio_tumoral', 'estudios', 'pubmed' o 'muestras'. Define el tipo de resultados a devolver. -l --limit Limita el número de resultados a devolver. Predeterminado: 100. Banderas (para descargar bases de datos COSMIC) -d --download_cosmic Conmuta al modo de descarga de base de datos. -gm --gget_mutate DESACTIVA la creación de una versión modificada de la base de datos para usar con gget mutate. Python: gget_mutate es Verdadero por defecto. Establezca gget_mutate=False para deshabilitar. Parámetros opcionales (para descargar bases de datos COSMIC) -mc --mutation_class 'cancer' (predeterminado), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', o 'cancer_example' Tipo de base de datos COSMIC para descargar. -cv --cosmic_version Versión de la base de datos COSMIC. Predeterminado: Ninguno -> Se establece en la última versión por defecto. -gv --grch_version Versión del genoma de referencia humano GRCh en el que se basó la base de datos COSMIC (37 o 38). Predeterminado: 37 Parámetros opcionales (generales) -o --out Ruta al archivo (o carpeta cuando se descargan bases de datos con el flag download_cosmic) donde se guardarán los resultados, p. ej. 'ruta/a/resultados.json'. Predeterminado: None -> Cuando download_cosmic=False: Los resultados se devolverán a la salida estándar -> Cuando download_cosmic=True: La base de datos se descargará en el directorio de trabajo actual Banderas (generales) -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget cosmic » gget cosmic 🪐","id":"126","title":"gget cosmic 🪐"},"127":{"body":"Consultar información gget cosmic -e genes EGFR # Python\ngget.cosmic(\"EGFR\", entity=\"genes\") → Devuelve mutaciones en el gen EGFR asociadas con el cáncer en el formato: Gene Syntax Alternate IDs Canonical EGFR c.*2446A>G EGFR c.*2446A>G, EGFR p.?, ... y EGFR c.(2185_2283)ins(18) EGFR c.(2185_2283)ins(18), EGFR p.?, ... y . . . . . . . . . . . .","breadcrumbs":"gget cosmic » Por ejemplo","id":"127","title":"Por ejemplo"},"128":{"body":"gget cosmic --download_cosmic # Python\ngget.cosmic(searchterm=None, download_cosmic=True) → Descargue la base de datos sobre cáncer de COSMIC de la última versión de COSMIC.","breadcrumbs":"gget cosmic » Descargar bases de datos COSMIC","id":"128","title":"Descargar bases de datos COSMIC"},"129":{"body":"Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903.","breadcrumbs":"gget cosmic » Citar","id":"129","title":"Citar"},"13":{"body":"gget archs4 ACE2 # Python\ngget.archs4(\"ACE2\") → Returns the 100 most correlated genes to ACE2: gene_symbol pearson_correlation SLC5A1 0.579634 CYP2C18 0.576577 . . . . . . gget archs4 -w tissue ACE2 # Python\ngget.archs4(\"ACE2\", which=\"tissue\") → Returns the tissue expression of ACE2 (by default, human data is used): id min q1 median q3 max System.Urogenital/Reproductive System.Kidney.RENAL CORTEX 0.113644 8.274060 9.695840 10.51670 11.21970 System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL 0.113644 5.905560 9.570450 13.26470 13.83590 . . . . . . . . . . . . . . . . . . Check out this tutorial by Dave Tang who wrote an R script to create this figure from the gget archs4 JSON output: image More examples","breadcrumbs":"gget archs4 » Examples","id":"13","title":"Examples"},"130":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Alinee múltiples proteínas o secuencias de ADN traducidas usando DIAMOND (DIAMOND es similar a BLAST, pero este es un cálculo local). Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional query Secuencia(s) (str o lista) de aminoácidos, o una ruta a un archivo tipo FASTA. Parámetro requerido -ref --reference Secuencias de aminoácidos de referencia (str o lista), o una ruta a un archivo tipo FASTA. Parámetros optionales -db --diamond_db Ruta para guardar la base de datos DIAMOND creada a partir de reference (str). Por defecto: None -> El archivo de base de datos DIAMOND temporal se eliminará después de la alineación o se guardará en out si se proporciona out. -s --sensitivity Sensibilidad de la alineación (str). Por defecto: \"very-sensitive\" (muy sensible). Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Número de hilos de procesamiento utilizados (int). Por defecto: 1. -db --diamond_binary Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget. -o --out Ruta al archivo en el que se guardarán los resultados (str), p. ej. \"ruta/al/directorio\". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan. Banderas -u --uniprot Use esta bandera cuando sequence es un ID de Uniprot en lugar de una secuencia de aminoácidos. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget diamond » gget diamond 💎","id":"130","title":"gget diamond 💎"},"131":{"body":"# !!! Asegúrese de enumerar primero el argumento posicional aquí para que no se agregue como secuencia de referencia\ngget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS # Python\ngget.diamond([\"GGETISAWESQME\", \"ELVISISALIVE\", \"LQVEFRANKLIN\", \"PACHTERLABRQCKS\"], reference=[\"GGETISAWESQMEELVISISALIVELQVEFRANKLIN\", \"PACHTERLABRQCKS\"]) → Produce los resultados de la alineación en formato JSON (Terminal) o Dataframe/CSV: query_accession subject_accession identity_percentage query_seq_length subject_seq_length length mismatches gap_openings query_start query_end subject_start subject_end e-value bit_score Seq0 Seq0 100 13 37 13 0 0 1 13 1 13 2.82e-09 30.8 Seq2 Seq0 100 12 37 12 0 0 1 12 26 37 4.35e-08 27.7 Seq3 Seq1 100 15 15 15 0 0 1 15 1 15 2.01e-11 36.2 Màs ejemplos","breadcrumbs":"gget diamond » Ejemplo","id":"131","title":"Ejemplo"},"132":{"body":"Si utiliza gget diamond en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176","breadcrumbs":"gget diamond » Citar","id":"132","title":"Citar"},"133":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Prediga localmente motivos lineales eucarióticos (ELMs) a partir de una secuencia de aminoácidos o UniProt Acc utilizando datos de la base de datos ELM . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Este módulo devuelve dos tipos de resultados (ver ejemplos). Los datos de ELM se pueden descargar y distribuir para uso no comercial de acuerdo con el acuerdo de licencia de software de ELM . Si utiliza gget elm en una publicación, favor de citar: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics , 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, et al. , The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research , Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 Antes de usar gget elm por primera vez, ejecute gget setup elm / gget.setup(\"elm\") una vez (consulte también gget setup ). Parámetro posicional sequence Secuencia de aminoácidos o Uniprot Acc (str). Al proporcionar una Uniprot Acc, use la bandera --uniprot (Python: uniprot=True). Parámetros optionales -s sensitivity Sensibilidad de la alineación DIAMOND (str). Por defecto: \"very-sensitive\" (muy sensible). Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t threads Número de hilos de procesamiento utilizados en la alineación de secuencias con DIAMOND (int). Por defecto: 1. -bin diamond_binary Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget. -o --out Ruta al archivo en el que se guardarán los resultados (str), p. ej. \"ruta/al/directorio\". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan. Banderas -u --uniprot Use esta bandera cuando sequence es una Uniprot Acc en lugar de una secuencia de aminoácidos. -e --expand Amplíe la información devuelta en el marco de datos de expresiones regulares para incluir los nombres de proteínas, los organismos y las referencias en las que se validó originalmente el motivo. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget elm » gget elm 🎭","id":"133","title":"gget elm 🎭"},"134":{"body":"Encuentre ELM en una secuencia de aminoácidos: gget setup elm # Descarga/actualiza la base de datos ELM local\ngget elm -o gget_elm_results LIAQSIGQASFV # Python\ngget.setup(“elm”) # Descarga/actualiza la base de datos ELM local\northolog_df, regex_df = gget.elm(\"LIAQSIGQASFV\") Encuentre ELM que proporcionen a una UniProt Acc: gget setup elm # Descarga/actualiza la base de datos ELM local\ngget elm -o gget_elm_results --uniprot Q02410 -e # Python\ngget.setup(“elm”) # Descarga/actualiza la base de datos ELM local\northolog_df, regex_df = gget.elm(\"Q02410\", uniprot=True, expand=True) → Produce dos resultados con información extensa sobre ELMs asociados con proteínas ortólogas y motivos encontrados en la secuencia de entrada directamente en función de sus expresiones regex: ortholog_df: Ortholog_UniProt_Acc ProteinName class_accession ELMIdentifier FunctionalSiteName Description Organism … Q02410 APBA1_HUMAN ELME000357 LIG_CaMK_CASK_1 CASK CaMK domain binding ligand motif Motif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2. Homo sapiens … Q02410 APBA1_HUMAN ELME000091 LIG_PDZ_Class_2 PDZ domain ligands The C-terminal class 2 PDZ-binding motif is classically represented by a pattern such as Homo sapiens … regex_df: Instance_accession ELMIdentifier FunctionalSiteName ELMType Description Instances (Matched Sequence) Organism … ELME000321 CLV_C14_Caspase3-7 Caspase cleavage motif CLV Caspase-3 and Caspase-7 cleavage site. ERSDG Mus musculus … ELME000102 CLV_NRD_NRD_1 NRD cleavage site CLV N-Arg dibasic convertase (NRD/Nardilysin) cleavage site. RRA Rattus norvegicus … ELME000100 CLV_PCSK_PC1ET2_1 PCSK cleavage site CLV NEC1/NEC2 cleavage site. KRD Mus musculus … ELME000146 CLV_PCSK_SKI1_1 PCSK cleavage site CLV Subtilisin/kexin isozyme-1 (SKI1) cleavage site. RLLTA Homo sapiens … ELME000231 DEG_APCC_DBOX_1 APCC-binding Destruction motifs DEG An RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent manner SRVKLNIVR Saccharomyces cerevisiae S288c … … … … … … … … … (Los motivos que aparecen en muchas especies diferentes pueden parecer repetidos, pero todas las filas deben ser únicas.) Màs ejemplos","breadcrumbs":"gget elm » Ejemplo","id":"134","title":"Ejemplo"},"135":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Realice un análisis de enriquecimiento de una lista de genes utilizando Enrichr . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional genes Lista de nombres cortos (símbolos) de los genes de interés para realizar el análisis de enriquecimiento, p. PHF14 RBM3 MSL1 PHF21A. Alternativamente: use la bandera --ensembl para ingresar IDs tipo Ensembl, p. ENSG00000106443 ENSG00000102317 ENSG00000188895. Otros parámetros requeridos -db --database Base de datos que será utilizada como referencia para el análisis de enriquecimiento. Admite cualquier base de datos enumerada aquí o uno de los siguientes accesos directos: 'pathway' (KEGG_2021_Human) 'transcription' (ChEA_2016) 'ontology' (GO_Biological_Process_2021) 'diseases_drugs' (GWAS_Catalog_2019) 'celltypes' (PanglaoDB_Augmented_2021) 'kinase_interactions' (KEA_2015) Parámetros opcionales -bkg_l --background_list Lista de nombres cortos (símbolos) de genes de 'background' (de fondo/control), p. NSUN3 POLRMT NLRX1. Alternativamente: usa la bandera --ensembl_background para ingresar IDs tipo Ensembl. -o --out Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. -ko --kegg_out Ruta al archivo png en el que se guardará la imágen de la vía de señalización celular KEGG, p. ej. ruta/al/directorio/KEGG.png. (Por defecto: None) -kr --kegg_rank Rango de la ruta KEGG que se va a trazar. (Por defecto: 1) figsize Solo para Python. (ancho, alto) de la visualización en pulgadas. (Por defecto: (10,10)) ax Solo para Python. Ingresa un objeto de ejes matplotlib para personalizar la visualización.(Por defecto: None) Banderas -e --ensembl Usa esta bandera si genes se ingresa como una lista de IDs tipo Ensembl. -e_b --ensembl_background Usa esta bandera si background_list se ingresa como una lista de IDs tipo Ensembl. -bkg --background Use un conjunto de 20,625 genes 'background' listados aquí . -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True produce los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa. plot Solo para Python. plot=True provée la visualización de los primeros 15 resultados (por defecto: False).","breadcrumbs":"gget enrichr » gget enrichr 💰","id":"135","title":"gget enrichr 💰"},"136":{"body":"gget enrichr -db ontology ACE2 AGT AGTR1 # Python\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\"], database=\"ontology\", plot=True) → Produce vías/funciones celulares relacionadas con los genes ACE2, AGT y AGTR1 de la base de datos GO Biological Process 2021 . En Python, plot=True provee la visualización de resultados: alt text Use gget enrichr con una lista de genes 'background': # Aquí, primero ingresamos los genes de interés (parámetro posicional 'genes'), para que no se agreguen a la lista de genes 'background' detrás del parámetro '-bkgr_l'\ngget enrichr \\ PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \\ -db ChEA_2022 \\ -bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2 # Python\ngget.enrichr( genes = [ \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\", \"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\" ], database = \"ChEA_2022\", background_list = [ \"NSUN3\",\"POLRMT\",\"NLRX1\",\"SFXN5\",\"ZC3H12C\",\"SLC25A39\",\"ARSG\", \"DEFB29\",\"PCMTD2\",\"ACAA1A\",\"LRRC1\",\"2810432D09RIK\",\"SEPHS2\", \"SAC3D1\",\"TMLHE\",\"LOC623451\",\"TSR2\",\"PLEKHA7\",\"GYS2\",\"ARHGEF12\", \"HIBCH\",\"LYRM2\",\"ZBTB44\",\"ENTPD5\",\"RAB11FIP2\",\"LIPT1\", \"INTU\",\"ANXA13\",\"KLF12\",\"SAT2\",\"GAL3ST2\",\"VAMP8\",\"FKBPL\", \"AQP11\",\"TRAP1\",\"PMPCB\",\"TM7SF3\",\"RBM39\",\"BRI3\",\"KDR\",\"ZFP748\", \"NAP1L1\",\"DHRS1\",\"LRRC56\",\"WDR20A\",\"STXBP2\",\"KLF1\",\"UFC1\", \"CCDC16\",\"9230114K14RIK\",\"RWDD3\",\"2610528K11RIK\",\"ACO1\", \"CABLES1\", \"LOC100047214\",\"YARS2\",\"LYPLA1\",\"KALRN\",\"GYK\", \"ZFP787\",\"ZFP655\",\"RABEPK\",\"ZFP650\",\"4732466D17RIK\",\"EXOSC4\", \"WDR42A\",\"GPHN\",\"2610528J11RIK\",\"1110003E01RIK\",\"MDH1\",\"1200014M14RIK\", \"AW209491\",\"MUT\",\"1700123L14RIK\",\"2610036D13RIK\", \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\",\"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\"\"COX15\",\"TMEM30A\",\"NSMCE4A\",\"TM2D2\",\"RHBDD3\",\"ATXN2\",\"NFS1\", \"3110001I20RIK\",\"BC038156\",\"C330002I19RIK\",\"ZFYVE20\",\"POLI\",\"TOMM70A\", \"LOC100047782\",\"2410012H22RIK\",\"RILP\",\"A230062G08RIK\", \"PTTG1IP\",\"RAB1\",\"AFAP1L1\", \"LYRM5\",\"2310026E23RIK\", \"SLC7A6OS\",\"MAT2B\",\"4932438A13RIK\",\"LRRC8A\",\"SMO\",\"NUPL2\" ], plot=True\n) → Provée factores de transcripción relacionados a los genes de interés y controlados con la lista de genes background de la base de datos ChEA 2022 . En Python, plot=True permite la visualización de resultados: alt text Genere una imagen de la vía de señalización de células KEGG con los genes del análisis de enriquecimiento resaltados: Esta función está disponible gracias a un PR de Noriaki Sato . gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1 # Python\ngget.enrichr([\"ZBP1\", \"IRF3\", \"RIPK1\"], database=\"pathway\", kegg_out=\"kegg.png\", kegg_rank=1) → Además de los resultados estándar gget enrichr, el argumento kegg_out guarda una imagen con los genes del análisis de enriquecimiento resaltados guardado como kegg.png: kegg El siguiente ejemplo fue enviado por Dylan Lawless a través de un PR (con ajustes de Laura Luebbert ): Use gget enrichr en R y cree unq visualización similar usando ggplot . TENGA EN CUENTA el cambio de ejes en comparación con la visualización en Python. system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") # Perform enrichment analysis on a list of genes\ndf <- gget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\"), database = \"ontology\") # Count number of overlapping genes\ndf$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric() # Only keep the top 15 results\ndf <- df[1:15, ] # Plot\nlibrary(ggplot2) df |> ggplot() + geom_bar(aes( x = -log10(adj_p_val), y = reorder(path_name, -adj_p_val) ), stat = \"identity\", fill = \"lightgrey\", width = 0.5, color = \"black\") + geom_text( aes( y = path_name, x = (-log10(adj_p_val)), label = overlapping_genes_count ), nudge_x = 0.75, show.legend = NA, color = \"red\" ) + geom_text( aes( y = Inf, x = Inf, hjust = 1, vjust = 1, label = \"# of overlapping genes\" ), show.legend = NA, color = \"red\" ) + geom_vline(linetype = \"dotted\", linewidth = 1, xintercept = -log10(0.05)) + ylab(\"Pathway name\") + xlab(\"-log10(adjusted P value)\") Más ejemplos","breadcrumbs":"gget enrichr » Ejemplo","id":"136","title":"Ejemplo"},"137":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Genera texto en lenguaje natural basado en mensaje de entrada. gget gpt use la API 'openai.ChatCompletion.create' de OpenAI . Este módulo, incluido su código, documentación y pruebas unitarias, fue escrito en parte por Chat-GTP3 de OpenAI. TENGA EN CUENTA: Las llamadas a la API de OpenAI solo son 'gratuitas' durante los primeros tres meses después de generar su cuenta de OpenAI (OpenAI proporciona un crédito de $5 que vence). Puede definir un límite de facturación mensual estricto (por ejemplo, $1) aquí . Vea sus precios y preguntas frecuentes aquí . Obtenga su clave API de OpenAI aquí . Regresa: El texto generado (str). Antes de usar gget gpt por primera vez, corre gget setup gpt / gget.setup(\"gpt\") (ver también gget setup ). Parámetros posicionales prompt Mensaje de entrada basado en el cual generar texto (str). api_key Su clave API de OpenAI (str) ( obtenga su clave API ). Parámetros optionales -m --model El nombre del algoritmo GPT que se usará para generar el texto (str). Por defecto: \"gpt-3.5-turbo\". See https://platform.openai.com/docs/models/gpt-4 for more information on the available models. -temp --temperature Valor entre 0 y 2 que controla el nivel de aleatoriedad y creatividad en el texto generado (float). Los valores más altos resultan en un texto más creativo y variado. Por defecto: 1. -tp --top_p Controla la diversidad del texto generado como alternativa al muestreo con --temperature (float). Los valores más altos resultan en un texto más diverso e inesperado. Por defecto: 1. Tenga en cuenta que OpenAI recomienda modificar --top_p o el parámetro --temperature, pero no ambas. -s --stop Una secuencia de tokens para marcar el final del texto generado (str). Por defecto: None. -mt --max_tokens Controla la longitud máxima del texto generado, en tokens (int). Por defecto: 200. -pp --presence_penalty Número entre -2.0 y 2.0. Los valores más altos aumentan la probabilidad de que el modelo hable sobre temas nuevos (float). Por defecto: 0. -fp --frequency_penalty Número entre -2.0 y 2.0. Los valores más altos reducen la probabilidad de que el modelo repita la misma línea palabra por palabra (float). Por defecto: 0. -lb --logit_bias Un diccionario que especifica un sesgo hacia ciertos tokens en el texto generado (dict). Por defecto: None. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.txt. Por defecto: salida estándar (STDOUT).","breadcrumbs":"gget gpt » gget gpt 💬","id":"137","title":"gget gpt 💬"},"138":{"body":"gget gpt \"Cómo estás hoy GPT?\" su_clave_api # Python\nprint(gget.gpt(\"Cómo estás hoy GPT?\", \"su_clave_api\"))","breadcrumbs":"gget gpt » Por ejemplo","id":"138","title":"Por ejemplo"},"139":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga información detallada sobre genes y transcripciones de Ensembl , UniProt y NCBI utilizando sus IDs del tipo Ensembl. Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional ens_ids Uno o más ID del tipo Ensembl. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -n --ncbi DESACTIVA los resultados de NCBI . Para Python: ncbi=False evita la incluida de datos de NCBI (por defecto: True). -u --uniprot DESACTIVA los resultados de UniProt . Para Python: uniprot=False evita la incluida de datos de UniProt (por defecto: True). -pdb --pdb INCLUYE PDB IDs en los resultados (podría aumentar el tiempo de ejecución). Para Python: pdb=True incluye IDs de PDB en los resultados (por defecto: False). -csv --csv Solo para la Terminal. Regresa los resultados en formato CSV. Para Python, usa json=True para regresar los resultados en formato JSON. -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget info » gget info 💡","id":"139","title":"gget info 💡"},"14":{"body":"If you use gget archs4 in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519","breadcrumbs":"gget archs4 » References","id":"14","title":"References"},"140":{"body":"gget info ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.info([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Regresa información detallada sobre cada ID de Ensembl ingresada: uniprot_id ncbi_gene_id primary_gene_name synonyms protein_names ensembl_description uniprot_description ncbi_description biotype canonical_transcript ... ENSG00000034713 P60520 11345 GABARAPL2 [ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2] Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)... GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ... Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein... protein_coding ENST00000037243.7 ... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ... More examples","breadcrumbs":"gget info » Por ejemplo","id":"140","title":"Por ejemplo"},"141":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Alinea múltiples secuencias de nucleótidos o aminoácidos usando el algoritmo Muscle5 . Regresa: Salida estándar (STDOUT) en formato ClustalW o archivo de tipo 'aligned FASTA' (.afa). Parámetro posicional fasta Lista de secuencias o ruta al archivo FASTA o .txt que contiene las secuencias de nucleótidos o aminoácidos que se van a alinear. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.afa. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -s5 --super5 Alinea las secuencies usando el algoritmo Super5 en lugar del algoritmo Parallel Perturbed Probcons (PPP) para disminuir el tiempo y la memoria usada durante la corrida. Use para ingresos grandes (unos cientos secuencias). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget muscle » gget muscle 🦾","id":"141","title":"gget muscle 🦾"},"142":{"body":"gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Python\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"]) gget muscle fasta.fa # Python\ngget.muscle(\"fasta.fa\") → Regresa las secuencias alineadas con coloración ClustalW. (Para devolver un archivo FASTA alineado (.afa), use el argumento --out (o save=True en Python).) En este ejemplo, el archivo 'fasta.fa' incluye varias secuencias para alineación (por ejemplo, isoformas devueltas desde gget seq). alt text También puede ver archivos FASTA alineados devueltos por gget.muscle usando programas como alv : # Python\n!pip install biopython\n!pip install alv\nfrom Bio import AlignIO\nimport alv gget.muscle(\"fasta.fa\", out=\"fasta_aligned.afa\")\nmsa = AlignIO.read(\"fasta_aligned.afa\", \"fasta\")\nalv.view(msa) More examples","breadcrumbs":"gget muscle » Por ejemplo","id":"142","title":"Por ejemplo"},"143":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Recibe secuencias de nucleótidos y mutaciones (en anotación de mutación estándar ) y devuelve versiones mutadas de las secuencias según las mutaciones proporcionadas. Formato de devolución: Guarda las secuencias mutadas en formato FASTA (o devuelve una lista que contiene las secuencias mutadas si out=None). Este módulo fue coescrito por Joseph Rich . Parámetro posicional sequences Ruta al archivo FASTA que contiene las secuencias a mutar, por ejemplo, 'path/to/seqs.fa'. Los identificadores de secuencia que siguen al carácter '>' deben corresponder a los identificadores en la columna seq_ID de mutations. NOTA: Solo se utilizará la cadena que sigue al '>' hasta el primer espacio o punto como identificador de secuencia. -> Se ignorarán los números de versión de los IDs de Ensembl. Ejemplo de formato del archivo FASTA: >seq1 (o ENSG00000106443) ACTGCGATAGACT >seq2 AGATCGCTAG Alternativamente: Proporcione secuencia(s) como una cadena o lista, por ejemplo, 'AGCTAGCT'. Otros parámetros requeridos -m --mutations Ruta al archivo csv o tsv (por ejemplo, 'path/to/mutations.csv') o marco de datos (objeto DataFrame) que contiene información sobre las mutaciones en el siguiente formato (la columna 'notas' no es necesaria): mutation mut_ID seq_ID notas c.2C>T mut1 seq1 -> Aplicar la mutación 1 a la secuencia 1 c.9_13inv mut2 seq2 -> Aplicar la mutación 2 a la secuencia 2 c.9_13inv mut2 seq4 -> Aplicar la mutación 2 a la secuencia 4 c.9_13delinsAAT mut3 seq4 -> Aplicar la mutación 3 a la secuencia 4 ... ... ... 'mutation' = Columna que contiene las mutaciones a realizar, escritas en anotación de mutación estándar 'mut_ID' = Columna que contiene el identificador de cada mutación 'seq_ID' = Columna que contiene los identificadores de las secuencias a mutar (deben corresponder a la cadena que sigue al carácter '>' en el archivo FASTA de 'sequences'; NO incluir espacios ni puntos) Alternativamente: Mutación(es) de entrada como una cadena o lista, por ejemplo, 'c.2C>T'. Si se proporciona una lista, el número de mutaciones debe ser igual al número de secuencias de entrada. Para uso desde el terminal (bash): Encierre las anotaciones de mutación individuales entre comillas para evitar errores. Parámetros opcionales -k --k Longitud de las secuencias que flanquean la mutación. Por defecto: 30. Si k > longitud total de la secuencia, se mantendrá toda la secuencia. -mc --mut_column Nombre de la columna que contiene las mutaciones a realizar en mutations. Por defecto: 'mutation'. -mic --mut_id_column Nombre de la columna que contiene los IDs de cada mutación en mutations. Por defecto: 'mut_ID'. -sic --seq_id_column Nombre de la columna que contiene los IDs de las secuencias a mutar en mutations. Por defecto: 'seq_ID'. -o --out Ruta al archivo FASTA de salida que contiene las secuencias mutadas, por ejemplo, 'path/to/output_fasta.fa'. Por defecto: None -> devuelve una lista de las secuencias mutadas a la salida estándar. Los identificadores (después del '>') de las secuencias mutadas en el FASTA de salida serán '>[seq_ID]_[mut_ID]'. Flags -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget mutate » gget mutate 🧟","id":"143","title":"gget mutate 🧟"},"144":{"body":"gget mutate ATCGCTAAGCT -m 'c.4G>T' # Python\ngget.mutate(\"ATCGCTAAGCT\", \"c.4G>T\") → Devuelve ATCTCTAAGCT. Lista de secuencias con una mutación para cada secuencia proporcionada en una lista: gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], [\"c.4G>T\", \"c.1_3inv\"], out=\"mut_fasta.fa\") → Guarda el archivo 'mut_fasta.fa' que contiene: >seq1_mut1 ATCTCTAAGCT >seq2_mut2 GATCTA Una mutación aplicada a varias secuencias con k ajustado: gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3 # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], \"c.1_3inv\", k=3) → Devuelve ['CTAGCT', 'GATCTA'].","breadcrumbs":"gget mutate » Ejemplos","id":"144","title":"Ejemplos"},"145":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga la estructura o los metadatos de una proteína usando data de RCSB Protein Data Bank (PDB) . Regresa: El archivo 'pdb' se regresa en formato PDB. Todos los demás datos se regresan en formato JSON. Parámetro posicional pdb_id ID del tipo PDB, p. ej. '7S7U'. Parámetros optionales -r --resource Define el tipo de información a regresar. Uno de los siguientes: 'pdb': Regresa la estructura de la proteína en formato PDB (regresa por defecto). 'entry': Regresa información sobre las estructuras PDB en el nivel superior de la organización de datos PDB jerárquicos. 'pubmed': Regresa anotaciones de PubMed (datos integrados de PubMed) para la cita principal de un ID PDB. 'assembly': Regresa información sobre estructuras PDB en el nivel de estructura cuaternaria. 'branched_entity': Regresa la descripción de la entidad ramificada (defina el ID de la entidad como identifier). 'nonpolymer_entity': Regresa datos de entidades no poliméricas (defina el ID de la entidad como identifier). 'polymer_entity': Regresa datos de entidades poliméricas (defina el ID de la entidad como identifier). 'uniprot': Regresa anotaciones UniProt para una entidad macromolecular (defina el ID de la entidad como identifier). 'branched_entity_instance': Regresa la descripción de instancia de entidad ramificada (defina el ID de cadena como identifier). 'polymer_entity_instance': Regresa datos de instancia de entidad polimérica (también conocida como cadena) (defina el ID de cadena como identifier). 'nonpolymer_entity_instance': Regresa datos de instancia de entidad no polimérica (defina el ID de cadena como identifier). -i --identifier Este parámetro se puede utilizar para definir el ID de ensamblaje, entidad o cadena (po defecto: None). Los IDs de ensamblaje/entidad son números (p. ej., 1) y los IDs de cadena son letras (p. ej., 'A'). -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/7S7U.pdb (o 7S7U_entry.json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.","breadcrumbs":"gget pdb » gget pdb 🔮","id":"145","title":"gget pdb 🔮"},"146":{"body":"gget pdb 7S7U -o 7S7U.pdb # Python\ngget.pdb(\"7S7U\", save=True) → Guarda la estructura de 7S7U en formato PDB como '7S7U.pdb' en el directorio de trabajo actual. Encuentre estructuras cristalinas de PDB para un análisis comparativo de la estructura de proteínas: # Encuentre IDs de PDB asociados con un ID de Ensembl\ngget info ENSG00000130234 # Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,\n# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB: # Obtenga la secuencia de aminoácidos\ngget seq --translate ENSG00000130234 -o gget_seq_results.fa # BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB\ngget blast --database pdbaa gget_seq_results.fa # Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo\ngget pdb 7DQA -o 7DQA.pdb\ngget pdb 7CT5 -o 7CT5.pdb # Encuentre IDs de PDB asociados con un ID de Ensembl\ngget.info(\"ENSG00000130234\") # Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,\n# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB: # Obtenga la secuencia de aminoácidos\ngget.seq(\"ENSG00000130234\", translate=True, save=True) # BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB\ngget.blast(\"gget_seq_results.fa\", database=\"pdbaa\") # Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo\ngget.pdb(\"7DQA\", save=True)\ngget.pdb(\"7CT5\", save=True) → Este caso de uso ejemplifica cómo encontrar archivos PDB para un análisis comparativo de la estructura de las proteínas asociado con IDs de Ensembl o secuencias de aminoácidos. Los archivos PDB obtenidos también se pueden comparar con las estructuras predichas generadas por gget alphafold . Los archivos PDB se pueden ver de forma interactiva en 3D aquí , o usando programas como PyMOL o Blender . Múltiple archivos PDB se pueden visualizar para comparación aquí . Más ejemplos","breadcrumbs":"gget pdb » Por ejemplo","id":"146","title":"Por ejemplo"},"147":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga enlaces FTP y sus respectivos metadatos (o use la bandera ftp para regresar solo los enlaces) para referenciar genomas y anotaciones de Ensembl . Regresa: Resultados en formato JSON. Parámetro posicional species La especie por la cual que se buscará los FTP en el formato género_especies, p. ej. homo_sapiens. Nota: No se requiere cuando se llama a la bandera --list_species. Accesos directos: 'human', 'mouse', 'human_grch37' (accede al ensamblaje del genoma GRCh37) Parámetros optionales -w --which Define qué resultados devolver. Por defecto: 'all' -> Regresa todos los resultados disponibles. Las entradas posibles son uno solo o una combinación de las siguientes (como lista separada por comas): 'gtf' - Regresa la anotación (GTF). 'cdna' - Regresa el transcriptoma (cDNA). 'dna' - Regresa el genoma (DNA). 'cds' - Regresa las secuencias codificantes correspondientes a los genes Ensembl. (No contiene UTR ni secuencia intrónica). 'cdrna' - Regresa secuencias de transcripción correspondientes a genes de ARN no codificantes (ncRNA). 'pep' - Regresa las traducciones de proteínas de los genes Ensembl. -r --release Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Default: latest Ensembl release. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.json. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -l --list_species Enumera todas las especies disponibles. (Para Python: combina con species=None.) -ftp --ftp Regresa solo los enlaces FTP solicitados. -d --download Solo para Terminal. Descarga los FTP solicitados al directorio actual (requiere curl para ser instalado). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget ref » gget ref 📖","id":"147","title":"gget ref 📖"},"148":{"body":"Use gget ref en combinación con kallisto | bustools para construir un índice de referencia: kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens) → kb ref crea un índice de referencia utilizando los últimos archivos de ADN y GTF de especies Homo sapiens que le ha pasado gget ref. Enumere todos los genomas disponibles de la versión 103 de Ensembl: gget ref --list_species -r 103 # Python\ngget.ref(species=None, list_species=True, release=103) → Regresa una lista con todos los genomas disponibles (gget ref verifica si GTF y FASTA están disponibles) de la versión 103 de Ensembl. (Si no se especifica ninguna versión, gget ref siempre devolverá información de la última versión de Ensembl). Obtenga la referencia del genoma para una especie específica: gget ref -w gtf,dna homo_sapiens # Python\ngget.ref(\"homo_sapiens\", which=[\"gtf\", \"dna\"]) → Regresa un JSON con los últimos FTP humanos GTF y FASTA, y sus respectivos metadatos, en el formato: { \"homo_sapiens\": { \"annotation_gtf\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz\", \"ensembl_release\": 106, \"release_date\": \"28-Feb-2022\", \"release_time\": \"23:27\", \"bytes\": \"51379459\" }, \"genome_dna\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz\", \"ensembl_release\": 106, \"release_date\": \"21-Feb-2022\", \"release_time\": \"09:35\", \"bytes\": \"881211416\" } }\n} Más ejemplos","breadcrumbs":"gget ref » Por ejemplo","id":"148","title":"Por ejemplo"},"149":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga genes y transcripciones de Ensembl usando términos de búsqueda de forma libre. Los resultados se comparan según las secciones \"nombre del gen\" y \"descripción\" en la base de datos de Ensembl. gget versión >= 0.27.9 también incluye resultados que coinciden con la sección \"sinónimo\" de Ensembl. Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional searchwords Una o más palabras de búsqueda de forma libre, p. ej. gaba nmda. (Nota: la búsqueda no distingue entre mayúsculas y minúsculas). Otros parámetros requeridos -s --species Especies o base de datos a buscar. Una especie se puede pasar en el formato 'género_especie', p. ej. 'homo_sapiens' o 'arabidopsis_thaliana'. Para pasar una base de datos específica, pase el nombre de la base de datos CORE, p. ej. 'mus_musculus_dba2j_core_105_1'. Todas las bases de datos disponibles para cada versión de Ensembl se pueden encontrar aquí: Vertebrados: http://ftp.ensembl.org/pub/current/mysql/ Invertebrados: http://ftp.ensemblgenomes.org/pub/current/ + selecciona reino animal + selecciona mysql/ Accesos directos: 'human', 'mouse' Parámetros optionales -r --release Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Por defecto: None -> se usa la última versión de Ensembl. Nota: No se aplica a las especies invertebrados (en su lugar, puede pasar una base de datos de una especies específica (incluyen un número de versión) al argumento species). Para especies de invertebrados, Ensembl solo almacena bases de datos de 10 versiones anteriores a la versión actual. Este argumento se sobrescribe si se pasa una base de datos específica (que incluye un número de publicación) al argumento species. -t --id_type 'gene' (esto se use por defecto) o 'transcript' Regesa genes o transcripciones, respectivamente. -ao --andor 'or' (esto se use por defecto) o 'and' 'or' ('o'): Regresa todos los genes que INCLUYEN AL MENOS UNA de las palabras de búsqueda en su nombre/descripción. 'and' ('y'): Regresa solo los genes que INCLUYEN TODAS las palabras de búsqueda en su nombre/descripción. -l --limit Limita el número de resultados de búsqueda, p. ej. 10. Por defecto: None. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -csv --csv Solo para la Terminal. Regresa los resultados en formato CSV. Para Python, usa json=True para regresar los resultados en formato JSON. -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget search » gget search 🔎","id":"149","title":"gget search 🔎"},"15":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch orthology and gene expression data from Bgee using Ensembl IDs. Return format: JSON/CSV (command-line) or data frame (Python). If you are specifically interested in human gene expression data, consider using gget opentargets or gget archs4 instead. gget bgee has less data, but supports more species. This module was written by Sam Wagenaar . Positional argument ens_id Ensembl gene ID, e.g. ENSG00000169194 or ENSSSCG00000014725. Required arguments -t --type Type of data to fetch. Options: orthologs, expression. Optional arguments -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Flags -csv --csv Command-line only. Returns the output in CSV format, instead of JSON format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget bgee » gget bgee 🐝","id":"15","title":"gget bgee 🐝"},"150":{"body":"gget search -s human gaba gamma-aminobutyric # Python\ngget.search([\"gaba\", \"gamma-aminobutyric\"], \"homo_sapiens\") → Regresa todos los genes que contienen al menos una de las palabras de búsqueda en su nombre o descripción de Ensembl/referencia externa: ensembl_id gene_name ensembl_description ext_ref_description biotype url ENSG00000034713 GABARAPL2 GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] GABA type A receptor associated protein like 2 protein_coding https://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713 . . . . . . . . . . . . . . . . . . Más ejemplos","breadcrumbs":"gget search » Por ejemplo","id":"150","title":"Por ejemplo"},"151":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Función para instalar/descargar dependencias de terceros para un módulo de gget. Parámetro posicional module Módulo gget para el que se deben instalar las dependencias.","breadcrumbs":"gget setup » gget setup 🔧","id":"151","title":"gget setup 🔧"},"152":{"body":"gget setup alphafold # Python\ngget.setup(\"alphafold\") → Instala todas las dependencias de terceros (modificadas) y descarga los parámetros del algoritmo (~4 GB) necesarios para ejecutar gget alphafold .","breadcrumbs":"gget setup » Por ejemplo","id":"152","title":"Por ejemplo"},"153":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga la(s) secuencia(s) nucleótidos o aminoácidos de un gen (y todas sus isoformas) con su ID de Ensembl. Regresa: Archivo de tipo FASTA. Parámetro posicional ens_ids One or more Ensembl IDs. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.fa. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -t --translate Regresa secuencias de aminoácidos (en lugar de nucleótidos). Las secuencias de nucleótidos se obtienen de Ensembl . Las secuencias de aminoácidos se obtienen de UniProt . -iso --isoforms Regresa las secuencias de todas las transcripciones conocidas. (Solo para IDs de genes). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget seq » gget seq 🧬","id":"153","title":"gget seq 🧬"},"154":{"body":"gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.seq([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Regresa las secuencias de nucleótidos de ENSG00000034713, ENSG00000104853, y ENSG00000170296 en formato FASTA. gget seq -t -iso ENSG00000034713 # Python\ngget.seq(\"ENSG00000034713\", translate=True, isoforms=True) → Regresa las secuencias de aminoácidos de todas las transcripciones conocidas de ENSG00000034713 en formato FASTA. Más ejemplos","breadcrumbs":"gget seq » Por ejemplo","id":"154","title":"Por ejemplo"},"155":{"body":"¡Gracias por invertir su tiempo en contribuir con nuestro proyecto! Cualquier contribución que hagas se verá reflejada en el repositorio de GitHub de gget . ✨ Lea nuestro Código de conducta para mantener nuestra comunidad accesible y respetable. En esta guía, obtendrá una descripción general del flujo de trabajo de contribución desde la creación de un GitHub Issue (asunto) o la creación de un GitHub Pull Request (PR) hasta la revisión y fusión de un PR.","breadcrumbs":"Guía de contribución » Bienvenido a la guía de contribución de gget","id":"155","title":"Bienvenido a la guía de contribución de gget"},"156":{"body":"","breadcrumbs":"Guía de contribución » Issues (asuntos)","id":"156","title":"Issues (asuntos)"},"157":{"body":"Si detecta un problema con gget o tiene una idea para una nueva función, comproba si ya existe un Issue para este problema/sugerencia . Si no existe un Issue relacionado, puede abrir un nuevo Issue utilizando el formulario correspondiente .","breadcrumbs":"Guía de contribución » Crear un nuevo Issue","id":"157","title":"Crear un nuevo Issue"},"158":{"body":"Explore nuestros Issues existentes para encontrar uno que le interese. Puede restringir la búsqueda utilizando \"labels\" como filtros. Si encuentra un Issue en el que desea trabajar, puede abrir un PR con una solución.","breadcrumbs":"Guía de contribución » Resolver un Issue","id":"158","title":"Resolver un Issue"},"159":{"body":"","breadcrumbs":"Guía de contribución » Contribuir a través de Pull Requests (PRs)","id":"159","title":"Contribuir a través de Pull Requests (PRs)"},"16":{"body":"Get orthologs for a gene gget bgee ENSSSCG00000014725 -t orthologs import gget\ngget.bgee(\"ENSSSCG00000014725\", type=\"orthologs\") → Returns orthologs for the gene with Ensembl ID ENSSSCG00000014725. gene_id gene_name species_id genus species 734881 hbb1 8355 Xenopus laevis ENSFCAG00000038029 LOC101098159 9685 Felis catus ENSBTAG00000047356 LOC107131172 9913 Bos taurus ENSOARG00000019163 LOC101105437 9940 Ovis aries ENSXETG00000025667 hbg1 8364 Xenopus tropicalis ... ... ... ... ... Get gene expression data for a gene gget bgee ENSSSCG00000014725 -t expression import gget\ngget.bgee(\"ENSSSCG00000014725\", type=\"expression\") → Returns gene expression data for the gene with Ensembl ID ENSSSCG00000014725. anat_entity_id anat_entity_name score score_confidence expression_state UBERON:0000178 blood 99.98 high expressed UBERON:0002106 spleen 99.96 high expressed UBERON:0002190 subcutaneous adipose tissue 99.70 high expressed UBERON:0005316 endocardial endothelium 99.61 high expressed UBERON:0002107 liver 99.27 high expressed ... ... ... ... ... More examples","breadcrumbs":"gget bgee » Examples","id":"16","title":"Examples"},"160":{"body":"Bifurcar (\"fork\") el repositorio de GitHub de gget . Usando GitHub Desktop: \"Getting started with GitHub Desktop\" lo guiará a través de la configuración de Desktop. Una vez que GitHub Desktop está configurado, puede usarlo para bifurcar el repositorio ! Usando la Terminal: Bifurca el repositorio para que pueda realizar sus cambios sin afectando el proyecto original hasta que esté listo para fusionarlos. ¡Cree una rama de trabajo y comience con sus cambios!","breadcrumbs":"Guía de contribución » Empezar","id":"160","title":"Empezar"},"161":{"body":"Confirme sus cambios una vez que esté satisfecho con ellos.","breadcrumbs":"Guía de contribución » Confirma sus actualizaciones","id":"161","title":"Confirma sus actualizaciones"},"162":{"body":"Revise el contenido para mantener precisión técnica. Edite los cambios/comentarios de gramática, ortografía y adherencia al estilo general del código de gget existente. Formatee su código usando \"black\" . Asegúrese de que las pruebas unitarias pasen: Las dependencias de desarrollador se pueden instalar con pip install -r dev-requirements.txt Ejecute pruebas unitarias existentes desde la carpeta de gget con coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* Agregue nuevas pruebas unitarias si corresponde: Los parámetros y los resultados esperados se pueden encontrar en archivos json en ./tests/fixtures/ Las pruebas unitarias se pueden agregar a ./tests/test_*.py y serán detectado automáticamente Asegúrese de que las ediciones sean compatibles tanto con Python como con la Terminal Los parámetros para la Terminal se definen en ./gget/main.py Agregue módulos/argumentos nuevos a la documentación, si corresponde: El manual de cada módulo se puede editar/añadir como ./docs/src/*.md Si tiene alguna pregunta, no dude en iniciar una discusión o crear un Issue como se describe anteriormente.","breadcrumbs":"Guía de contribución » ‼️ Auto-revisa lo siguiente antes de crear un PR ‼️","id":"162","title":"‼️ Auto-revisa lo siguiente antes de crear un PR ‼️"},"163":{"body":"Cuando haya terminado con los cambios, cree un Pull Request , también conocido como \"PR\". ‼️ Realice todos los PRs contra la rama dev del repositorio gget No olvide de vincular su PR con un Issue si estás resolviendo uno. Habilite la casilla de verificación para permitir ediciones del mantenedor para que la rama se pueda actualizar para una fusión. Si se encuentra con problemas durante la fusión, consulte este tutorial de git para ayudarlo a resolver conflictos de fusión y otros problemas. Una vez que envíe su PR, un miembro del equipo gget revisará su propuesta. Podemos hacer preguntas o solicitar información adicional.","breadcrumbs":"Guía de contribución » Crear un Pull Request (PR)","id":"163","title":"Crear un Pull Request (PR)"},"164":{"body":"¡Felicidades! 🎉 El equipo de gget te lo agradece. ✨ Una vez que su PR se fusione, sus contribuciones serán visibles públicamente en el repositorio de gget .","breadcrumbs":"Guía de contribución » ¡Su PR está fusionado!","id":"164","title":"¡Su PR está fusionado!"},"165":{"body":"","breadcrumbs":"Codigo de conducto » Código de Conducta convenido para Contribuyentes","id":"165","title":"Código de Conducta convenido para Contribuyentes"},"166":{"body":"Nosotros, como miembros, contribuyentes y administradores nos comprometemos a hacer de la participación en nuestra comunidad sea una experiencia libre de acoso para todo el mundo, independientemente de la edad, dimensión corporal, discapacidad visible o invisible, etnicidad, características sexuales, identidad y expresión de género, nivel de experiencia, educación, nivel socio-económico, nacionalidad, apariencia personal, raza, casta, color, religión, o identidad u orientación sexual. Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y sana.","breadcrumbs":"Codigo de conducto » Nuestro compromiso","id":"166","title":"Nuestro compromiso"},"167":{"body":"Ejemplos de comportamientos que contribuyen a crear un ambiente positivo para nuestra comunidad: Demostrar empatía y amabilidad ante otras personas Respeto a diferentes opiniones, puntos de vista y experiencias Dar y aceptar adecuadamente retroalimentación constructiva Aceptar la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, aprendiendo de la experiencia Centrarse en lo que sea mejor no sólo para nosotros como individuos, sino para la comunidad en general Ejemplos de comportamiento inaceptable: El uso de lenguaje o imágenes sexualizadas, y aproximaciones o atenciones sexuales de cualquier tipo Comentarios despectivos ( trolling ), insultantes o derogatorios, y ataques personales o políticos El acoso en público o privado Publicar información privada de otras personas, tales como direcciones físicas o de correo electrónico, sin su permiso explícito Otras conductas que puedan ser razonablemente consideradas como inapropiadas en un entorno profesional","breadcrumbs":"Codigo de conducto » Nuestros estándares","id":"167","title":"Nuestros estándares"},"168":{"body":"Los administradores de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán acciones apropiadas y correctivas de forma justa en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino. Los administradores de la comunidad tendrán el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, commits , código, ediciones de páginas de wiki, issues y otras contribuciones que no se alineen con este Código de Conducta, y comunicarán las razones para sus decisiones de moderación cuando sea apropiado.","breadcrumbs":"Codigo de conducto » Aplicación de las responsabilidades","id":"168","title":"Aplicación de las responsabilidades"},"169":{"body":"Este código de conducta aplica tanto a espacios del proyecto como a espacios públicos donde un individuo esté en representación del proyecto o comunidad. Ejemplos de esto incluyen el uso de la cuenta oficial de correo electrónico, publicaciones a través de las redes sociales oficiales, o presentaciones con personas designadas en eventos en línea o no.","breadcrumbs":"Codigo de conducto » Alcance","id":"169","title":"Alcance"},"17":{"body":"If you use gget bgee in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793","breadcrumbs":"gget bgee » References","id":"17","title":"References"},"170":{"body":"Instancias de comportamiento abusivo, acosador o inaceptable de otro modo podrán ser reportadas a los administradores de la comunidad responsables del cumplimiento a través de lpachter@caltech.edu. Todas las quejas serán evaluadas e investigadas de una manera puntual y justa. Todos los administradores de la comunidad están obligados a respetar la privacidad y la seguridad de quienes reporten incidentes.","breadcrumbs":"Codigo de conducto » Aplicación","id":"170","title":"Aplicación"},"171":{"body":"Los administradores de la comunidad seguirán estas Guías de Impacto en la Comunidad para determinar las consecuencias de cualquier acción que juzguen como un incumplimiento de este Código de Conducta:","breadcrumbs":"Codigo de conducto » Guías de Aplicación","id":"171","title":"Guías de Aplicación"},"172":{"body":"Impacto en la Comunidad : El uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no acogedor en la comunidad. Consecuencia : Un aviso escrito y privado por parte de los administradores de la comunidad, proporcionando claridad alrededor de la naturaleza de este incumplimiento y una explicación de por qué el comportamiento es inaceptable. Una disculpa pública podría ser solicitada.","breadcrumbs":"Codigo de conducto » 1. Corrección","id":"172","title":"1. Corrección"},"173":{"body":"Impacto en la Comunidad : Un incumplimiento causado por un único incidente o por una cadena de acciones. Consecuencia : Un aviso con consecuencias por comportamiento prolongado. No se interactúa con las personas involucradas, incluyendo interacción no solicitada con quienes se encuentran aplicando el Código de Conducta, por un periodo especificado de tiempo. Esto incluye evitar las interacciones en espacios de la comunidad, así como a través de canales externos como las redes sociales. Incumplir estos términos puede conducir a una expulsión temporal o permanente.","breadcrumbs":"Codigo de conducto » 2. Aviso","id":"173","title":"2. Aviso"},"174":{"body":"Impacto en la Comunidad : Una serie de incumplimientos de los estándares de la comunidad, incluyendo comportamiento inapropiado continuo. Consecuencia : Una expulsión temporal de cualquier forma de interacción o comunicación pública con la comunidad durante un intervalo de tiempo especificado. No se permite interactuar de manera pública o privada con las personas involucradas, incluyendo interacciones no solicitadas con quienes se encuentran aplicando el Código de Conducta, durante este periodo. Incumplir estos términos puede conducir a una expulsión permanente.","breadcrumbs":"Codigo de conducto » 3. Expulsión temporal","id":"174","title":"3. Expulsión temporal"},"175":{"body":"Impacto en la Comunidad : Demostrar un patrón sistemático de incumplimientos de los estándares de la comunidad, incluyendo conductas inapropiadas prolongadas en el tiempo, acoso de individuos, o agresiones o menosprecio a grupos de individuos. Consecuencia : Una expulsión permanente de cualquier tipo de interacción pública con la comunidad del proyecto.","breadcrumbs":"Codigo de conducto » 4. Expulsión permanente","id":"175","title":"4. Expulsión permanente"},"176":{"body":"Este Código de Conducta es una adaptación del Contributor Covenant , versión 2.1, disponible en https://www.contributor-covenant.org/es/version/2/1/code_of_conduct.html Las Guías de Impacto en la Comunidad están inspiradas en la escalera de aplicación del código de conducta de Mozilla . Para respuestas a las preguntas frecuentes de este código de conducta, consulta las FAQ en https://www.contributor-covenant.org/faq . Hay traducciones disponibles en https://www.contributor-covenant.org/translations https://www.contributor-covenant.org/translations","breadcrumbs":"Codigo de conducto » Atribución","id":"176","title":"Atribución"},"177":{"body":"license Si utiliza gget en una publicación, favor de citar: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Si utiliza gget alphafold, favor de citar también: Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 Y si aplica: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034 Si utiliza gget archs4, favor de citar también: Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519 Si utiliza gget bgee, favor de citar también: Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793 Si utiliza gget blast, favor de citar también: Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712. Si utiliza gget blat, favor de citar también: Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518. Si utiliza gget cbio, favor de citar también: Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset. Si utiliza gget cellxgene, favor de citar también: Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/ Si utiliza gget cosmic, favor de citar también: Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903. Si utiliza gget diamond, favor de citar también: Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176 Si utiliza gget elm, favor de citar también: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 Si utiliza gget enrichr, favor de citar también: Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . Si trabaja con conjuntos de datos no humanos/ratón, cite también: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483. Si utiliza gget info, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052 Si utiliza gget muscle, favor de citar también: Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169 Si utiliza gget opentargets, favor de citar también: Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572. Si utiliza gget pdb, favor de citar también: Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472. Si utiliza gget ref o gget search, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Si utiliza gget seq, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"Cómo citar » Citar","id":"177","title":"Citar"},"178":{"body":"gget es tan preciso como la base de datos/servidores/APIs que utiliza. La exactitud o fiabilidad de los datos no es garantizada por ningún motivo. Los proveedores por ningún motivo seran responsables de (incluyendo, sin limite alguno) la calidad, ejecución, o comerciabilidad para cualquier propósito particular surgiendo del uso o la incapacidad de usar los datos.","breadcrumbs":"Cómo citar » Descargo de responsabilidad","id":"178","title":"Descargo de responsabilidad"},"18":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. BLAST a nucleotide or amino acid sequence to any BLAST database. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument sequence Nucleotide or amino acid sequence, or path to FASTA or .txt file. Optional arguments -p --program 'blastn', 'blastp', 'blastx', 'tblastn', or 'tblastx'. Default: 'blastn' for nucleotide sequences; 'blastp' for amino acid sequences. -db --database 'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', or 'pdbnt'. Default: 'nt' for nucleotide sequences; 'nr' for amino acid sequences. More info on BLAST databases -l --limit Limits number of hits to return. Default: 50. -e --expect Defines the expect value cutoff. Default: 10.0. -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -lcf --low_comp_filt Turns on low complexity filter . -mbo --megablast_off Turns off MegaBLAST algorithm. Default: MegaBLAST on (blastn only). -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget blast » gget blast 💥","id":"18","title":"gget blast 💥"},"19":{"body":"gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blast(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\") → Returns the BLAST result of the sequence of interest. gget blast automatically detects this sequence as an amino acid sequence and therefore sets the BLAST program to blastp with database nr . Description Scientific Name Common Name Taxid Max Score Total Score Query Cover ... PREDICTED: gamma-aminobutyric acid receptor-as... Colobus angolensis palliatus NaN 336983 180 180 100% ... . . . . . . . . . . . . . . . . . . . . . ... BLAST from .fa or .txt file: gget blast fasta.fa # Python\ngget.blast(\"fasta.fa\") → Returns the BLAST results of the first sequence contained in the fasta.fa file. More examples","breadcrumbs":"gget blast » Example","id":"19","title":"Example"},"2":{"body":"Version ≥ 0.29.0 (Sep 25, 2024): New modules: gget cbio gget opentargets gget bgee gget enrichr now also supports species other than human and mouse (fly, yeast, worm, and fish) via modEnrichR gget mutate : gget mutate will now merge identical sequences in the final file by default. Mutation creation was vectorized to decrease runtime. Improved flanking sequence check for non-substitution mutations to make sure no wildtype kmer is retained in the mutation-containing sequence. Addition of several new arguments to customize sequence generation and output. gget cosmic : Added support for targeted as well as gene screens. The CSV file created for gget mutate now also contains protein mutation info. gget ref : Added out file option. gget info and gget seq : Switched to Ensembl POST API to increase speed (nothing changes in front end). Other \"behind the scenes\" changes: Unit tests reorganized to increase speed and decrease code Requirements updated to allow newer mysql-connector versions Support Numpy>= 2.0 Version ≥ 0.28.6 (Jun 2, 2024): New module: gget mutate gget cosmic : You can now download entire COSMIC databases using the argument download_cosmic argument gget ref : Can now fetch the GRCh37 genome assembly using species='human_grch37' gget search : Adjust access of human data to the structure of Ensembl release 112 (fixes issue 129 ) Version ≥ 0.28.5 (May 29, 2024): Yanked due to logging bug in gget.setup(\"alphafold\") + inversion mutations in gget mutate only reverse the string instead of also computing the complementary strand Version ≥ 0.28.4 (January 31, 2024): gget setup : Fix bug with filepath when running gget.setup(\"elm\") on Windows OS. Version ≥ 0.28.3 (January 22, 2024): gget search and gget ref now also support fungi 🍄, protists 🌝, and invertebrate metazoa 🐝 🐜 🐌 🐙 (in addition to vertebrates and plants) New module: gget cosmic gget enrichr : Fix duplicate scatter dots in plot when pathway names are duplicated gget elm : Changed ortho results column name 'Ortholog_UniProt_ID' to 'Ortholog_UniProt_Acc' to correctly reflect the column contents, which are UniProt Accessions. 'UniProt ID' was changed to 'UniProt Acc' in the documentation for all gget modules. Changed ortho results column name 'motif_in_query' to 'motif_inside_subject_query_overlap'. Added interaction domain information to results (new columns: \"InteractionDomainId\", \"InteractionDomainDescription\", \"InteractionDomainName\"). The regex string for regular expression matches was encapsulated as follows: \"(?=(regex))\" (instead of directly passing the regex string \"regex\") to enable capturing all occurrences of a motif when the motif length is variable and there are repeats in the sequence ( https://regex101.com/r/HUWLlZ/1 ). gget setup : Use the out argument to specify a directory the ELM database will be downloaded into. Completes this feature request . gget diamond : The DIAMOND command is now run with --ignore-warnings flag, allowing niche sequences such as amino acid sequences that only contain nucleotide characters and repeated sequences. This is also true for DIAMOND alignments performed within gget elm . gget ref and gget search back-end change: the current Ensembl release is fetched from the new release file on the Ensembl FTP site to avoid errors during uploads of new releases. gget search : FTP link results (--ftp) are saved in txt file format instead of json. Fix URL links to Ensembl gene summary for species with a subspecies name and invertebrates. gget ref : Back-end changes to increase speed New argument: list_iv_species to list all available invertebrate species (can be combined with the release argument to fetch all species available from a specific Ensembl release) Version ≥ 0.28.2 (November 15, 2023): gget info : Return a logging error message when the NCBI server fails for a reason other than a fetch fail (this is an error on the server side rather than an error with gget) Replace deprecated 'text' argument to find()-type methods whenever used with dependency BeautifulSoup gget elm : Remove false positive and true negative instances from returned results gget elm : Add expand argument Version ≥ 0.28.0 (November 5, 2023): Updated documentation of gget muscle to add a tutorial on how to visualize sequences with varying sequence name lengths + slight change to returned visualization so it's a bit more robust to varying sequence names gget muscle now also allows a list of sequences as input (as an alternative to providing the path to a FASTA file) Allow missing gene filter for gget cellxgene (fixes bug ) gget seq : Allow missing gene names (fixes https://github.com/pachterlab/gget/issues/107 ) gget enrichr : Use new arguments kegg_out and kegg_rank to create an image of the KEGG pathway with the genes from the enrichment analysis highlighted (thanks to this PR by Noriaki Sato ) New modules: gget elm and gget diamond Version ≥ 0.27.9 (August 7, 2023): gget enrichr : Use new argument background_list to provide a list of background genes gget search now also searches Ensembl synonyms (in addition to gene descriptions and names) to return more comprehensive search results (thanks to Samuel Klein for the suggestion ) Version ≥ 0.27.8 (July 12, 2023): gget search : Specify the Ensembl release from which information is fetched with new argument -r --release Fixed bug in gget pdb (this bug was introduced in version 0.27.5) Version ≥ 0.27.7 (May 15, 2023): Moved dependencies for modules gget gpt and gget cellxgene from automatically installed requirements to gget setup . Updated gget alphafold dependencies for compatibility with Python >= 3.10. Added census_version argument to gget cellxgene . Version ≥ 0.27.6 (May 1, 2023) (YANKED due to problems with dependencies -> replaced with version 0.27.7): Thanks to PR by Tomás Di Domenico : gget search can now also query plant 🌱 Ensembl IDs. New module: gget cellxgene Version ≥ 0.27.5 (April 6, 2023): Updated gget search to function correctly with new Pandas version 2.0.0 (released on April 3rd, 2023) as well as older versions of Pandas Updated gget info with new flags uniprot and ncbi which allow turning off results from these databases independently to save runtime (note: flag ensembl_only was deprecated) All gget modules now feature a -q / --quiet (Python: verbose=False) flag to turn off progress information Version ≥ 0.27.4 (March 19, 2023): New module: gget gpt Version ≥ 0.27.3 (March 11, 2023): gget info excludes PDB IDs by default to increase speed (PDB results can be included using flag --pdb / pdb=True). Version ≥ 0.27.2 (January 1, 2023): Updated gget alphafold to DeepMind's AlphaFold v2.3.0 (including new arguments multimer_for_monomer and multimer_recycles) Version ≥ 0.27.0 (December 10, 2022): Updated gget alphafold to match recent changes by DeepMind Updated version number to match gget's creator 's age following a long-standing Pachter lab tradition Version ≥ 0.3.13 (November 11, 2022): Reduced runtime for gget enrichr and gget archs4 when used with Ensembl IDs Version ≥ 0.3.12 (November 10, 2022): gget info now also returns subcellular localisation data from UniProt New gget info flag ensembl_only returns only Ensembl results Reduced runtime for gget info and gget seq Version ≥ 0.3.11 (September 7, 2022): New module: gget pdb Version ≥ 0.3.10 (September 2, 2022): gget alphafold now also returns pLDDT values for generating plots from output without rerunning the program (also see the gget alphafold FAQ ) Version ≥ 0.3.9 (August 25, 2022): Updated openmm installation instructions for gget alphafold Version ≥ 0.3.8 (August 12, 2022): Fixed mysql-connector-python version requirements Version ≥ 0.3.7 (August 9, 2022): NOTE: The Ensembl FTP site changed its structure on August 8, 2022. Please upgrade to gget version ≥ 0.3.7 if you use gget ref Version ≥ 0.3.5 (August 6, 2022): New module: gget alphafold Version ≥ 0.2.6 (July 7, 2022): gget ref now supports plant genomes! 🌱 Version ≥ 0.2.5 (June 30, 2022): NOTE: UniProt changed the structure of their API on June 28, 2022. Please upgrade to gget version ≥ 0.2.5 if you use any of the modules querying data from UniProt ( gget info and gget seq ). Version ≥ 0.2.3: (June 26, 2022): JSON is now the default output format for the command-line interface for modules that previously returned data frame (CSV) format by default (the output can be converted to data frame/CSV using flag [-csv][--csv]). Data frame/CSV remains the default output for Jupyter Lab / Google Colab (and can be converted to JSON with json=True). For all modules, the first required argument was converted to a positional argument and should not be named anymore in the command-line, e.g. gget ref -s human → gget ref human. gget info: [--expand] is deprecated. The module will now always return all of the available information. Slight changes to the output returned by gget info, including the return of versioned Ensembl IDs. gget info and gget seq now support 🪱 WormBase and 🪰 FlyBase IDs. gget archs4 and gget enrichr now also take Ensembl IDs as input with added flag [-e][--ensembl] (ensembl=True in Jupyter Lab / Google Colab). gget seq argument seqtype was replaced by flag [-t][--translate] (translate=True/False in Jupyter Lab / Google Colab) which will return either nucleotide (False) or amino acid (True) sequences. gget search argument seqtype was renamed to id_type for clarity (still taking the same arguments 'gene' or 'transcript').","breadcrumbs":"What's New? » ✨ What's new","id":"2","title":"✨ What's new"},"20":{"body":"If you use gget blast in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.","breadcrumbs":"gget blast » References","id":"20","title":"References"},"21":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Find the genomic location of a nucleotide or amino acid sequence using BLAT . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument sequence Nucleotide or amino acid sequence, or path to FASTA or .txt file. Optional arguments -st --seqtype 'DNA', 'protein', 'translated%20RNA', or 'translated%20DNA'. Default: 'DNA' for nucleotide sequences; 'protein' for amino acid sequences. -a --assembly 'human' (hg38) (default), 'mouse' (mm39), 'zebrafinch' (taeGut2), or any of the species assemblies available here (use short assembly name). -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget blat » gget blat 🎯","id":"21","title":"gget blat 🎯"},"22":{"body":"gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blat(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\", assembly=\"taeGut2\") → Returns BLAT results for assembly taeGut2 (zebra finch). In the above example, gget blat automatically detects this sequence as an amino acid sequence and therefore sets the BLAT seqtype to protein . genome query_size aligned_start aligned_end matches mismatches %_aligned ... taeGut2 88 12 88 77 0 87.5 ... More examples","breadcrumbs":"gget blat » Example","id":"22","title":"Example"},"23":{"body":"If you use gget blat in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.","breadcrumbs":"gget blat » References","id":"23","title":"References"},"24":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Plot cancer genomics heatmaps using data from cBioPortal using Ensembl IDs or gene names. This module was written by Sam Wagenaar . Positional argument subcommand Either search or plot","breadcrumbs":"gget cbio » gget cbio 📖","id":"24","title":"gget cbio 📖"},"25":{"body":"Find cBioPortal study IDs by keyword. Return format: JSON (command-line) or string list (Python). Note: This does not return studies with mixed cancer types. Positional argument keywords Space-separated list of keywords to search for, e.g. breast lung. Python: Pass keywords as a list of strings.","breadcrumbs":"gget cbio » search subcommand (Python: gget.cbio_search)","id":"25","title":"search subcommand (Python: gget.cbio_search)"},"26":{"body":"Plot cancer genomics heatmaps using data from cBioPortal. Return format: PNG (command-line and Python) Required arguments -s --study_ids Space-separated list of cBioPortal study IDs, e.g. msk_impact_2017 egc_msk_2023. -g --genes Space-separated list of gene names or Ensembl IDs, e.g. NOTCH3 ENSG00000108375. Optional arguments -st --stratification Column to stratify the data by. Default: tissue. Options: tissue cancer_type cancer_type_detailed study_id sample -vt --variation_type Type of variation to plot. Default: mutation_occurrences. Options: mutation_occurrences cna_nonbinary (Note: stratification must be 'sample' for this option) sv_occurrences cna_occurrences Consequence (Note: stratification must be 'sample' for this option) -f --filter Filter the data by a specific value in a specific column, e.g. study_id:msk_impact_2017 Python: filter=(column, value) -dd --data_dir Directory to store data files. Default: ./gget_cbio_cache. -fd --figure_dir Directory to output figures. Default: ./gget_cbio_figures. -fn --filename Filename for the output figure, relative to figure_dir. Default: auto-generated Python: figure_filename -t --title Title for the output figure. Default: auto-generated Python: figure_title -dpi --dpi DPI of the output figure. Default: 100. Flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. -nc --no_confirm Command-line only. Skip download confirmation prompts. Python: Use confirm_download=True to enable download confirmation prompts. -sh --show Show the plot in a window (automatic in Jupyter notebooks).","breadcrumbs":"gget cbio » plot subcommand (Python: gget.cbio_plot)","id":"26","title":"plot subcommand (Python: gget.cbio_plot)"},"27":{"body":"Find all cBioPortal studies with cancer types matching specific keywords: gget cbio search esophag ovary ovarian # Python\nimport gget\ngget.cbio_search(['esophag', 'ovary', 'ovarian']) → Returns a list of studies with cancer types matching the keywords esophag, ovary, or ovarian. ['egc_tmucih_2015', 'egc_msk_2017', ..., 'msk_spectrum_tme_2022'] Plot a heatmap of mutation occurrences for specific genes in a specific study: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st tissue \\ -vt mutation_occurrences \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='tissue', variation_type='mutation_occurrences', dpi=200\n) → Saves a heatmap of mutation occurrences for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_tissue.png. Heatmap Plot a heatmap of mutation types for specific genes in a specific study: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', dpi=200,\n) → Saves a heatmap of mutation types for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_sample.png. Heatmap Plot a heatmap of mutation types for specific genes in a specific study, filtering by tissue: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -f tissue:intestine \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', filter=('tissue', 'intestine'), dpi=200,\n) → Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, to ./gget_cbio_figures/Heatmap_sample_intestine.png. Heatmap Plot a heatmap with a custom title and filename: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -f tissue:intestine \\ -dpi 200 \\ -y \\ -t \"Intestinal Mutations\" \\ -fn intestinal_mutations.png # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', filter=('tissue', 'intestine'), dpi=200, figure_title='Intestinal Mutations', figure_filename='intestinal_mutations.png'\n) → Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, with the title \"Intestinal Mutations\" to ./gget_cbio_figures/intestinal_mutations.png. Heatmap More examples","breadcrumbs":"gget cbio » Examples","id":"27","title":"Examples"},"28":{"body":"If you use gget cbio in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset.","breadcrumbs":"gget cbio » References","id":"28","title":"References"},"29":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Query data from CZ CELLxGENE Discover using the CZ CELLxGENE Discover Census . CZ CELLxGENE Discover provides ready-to-use single-cell RNA sequencing count matrices for certain tissues/diseases/genes/etc. Returns: An AnnData object containing the count matrix and metadata of single-cell RNA sequencing data from the defined tissues/genes/etc. Before using gget cellxgene for the first time, run gget setup cellxgene / gget.setup(\"cellxgene\") once (also see gget setup ). Optional arguments -s --species Choice of 'homo_sapiens' or 'mus_musculus'. Default: 'homo_sapiens'. -g --gene Str or list of gene name(s) or Ensembl ID(s). Default: None. NOTE: Use -e / --ensembl (Python: ensembl=True) when providing Ensembl ID(s) instead of gene name(s). See https://cellxgene.cziscience.com/gene-expression for examples of available genes. -cv --census_version Str defining version of Census, e.g. \"2023-05-15\", or \"latest\" or \"stable\". Default: \"stable\". -cn --column_names List of metadata columns to return (stored in AnnData.obs). Default: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type'] For more options, see: https://api.cellxgene.cziscience.com/curation/ui/#/ -> Schemas -> dataset -o --out Path to file to save generated AnnData .h5ad file (or .csv with -mo / --meta_only). Required when using from command line! Flags -e --ensembl Use when genes are provided as Ensembl IDs instead of gene names. -mo --meta_only Only returns metadata data frame (corresponds to AnnData.obs). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. Optional arguments corresponding to CZ CELLxGENE Discover metadata attributes --tissue Str or list of tissue(s), e.g. ['lung', 'blood']. Default: None. See https://cellxgene.cziscience.com/gene-expression for examples of available tissues. --cell_type Str or list of cell type (s), e.g. ['mucus secreting cell', 'neuroendocrine cell']. Default: None. See https://cellxgene.cziscience.com/gene-expression and select a tissue to see examples of available cell types. --development_stage Str or list of development stage(s). Default: None. --disease Str or list of disease(s). Default: None. --sex Str or list of sex(es), e.g. 'female'. Default: None. --dataset_id Str or list of CELLxGENE dataset ID(s). Default: None. --tissue_general_ontology_term_id Str or list of high-level tissue UBERON ID(s). Default: None. Tissue labels and their corresponding UBERON IDs are listed here . --tissue_general Str or list of high-level tissue label(s). Default: None. Tissue labels and their corresponding UBERON IDs are listed here . --tissue_ontology_term_id Str or list of tissue ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --assay_ontology_term_id Str or list of assay ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --assay Str or list of assay(s) as defined in the CELLxGENE dataset schema . Default: None. --cell_type_ontology_term_id Str or list of cell type ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --development_stage_ontology_term_id Str or list of development stage ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --disease_ontology_term_id Str or list of disease ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --donor_id Str or list of donor ID(s) as defined in the CELLxGENE dataset schema . Default: None. --self_reported_ethnicity_ontology_term_id Str or list of self-reported ethnicity ontology ID(s) as defined in the CELLxGENE dataset schema . Default: None. --self_reported_ethnicity Str or list of self-reported ethnicity as defined in the CELLxGENE dataset schema . Default: None. --sex_ontology_term_id Str or list of sex ontology ID(s) as defined in the CELLxGENE dataset schema . Default: None. --suspension_type Str or list of suspension type(s) as defined in the CELLxGENE dataset schema . Default: None.","breadcrumbs":"gget cellxgene » gget cellxgene 🍱","id":"29","title":"gget cellxgene 🍱"},"3":{"body":"pypi version image pip install --upgrade gget Alternative: conda install -c bioconda gget For use in Jupyter Lab / Google Colab: import gget","breadcrumbs":"Installation » Installation","id":"3","title":"Installation"},"30":{"body":"gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad # Python\nadata = gget.cellxgene( gene = [\"ACE2\", \"ABCA1\", \"SLC5A1\"], tissue = \"lung\", cell_type = [\"mucus secreting cell\", \"neuroendocrine cell\"]\n)\nadata → Returns an AnnData object containing the scRNAseq ACE2, ABCA1, and SLC5A1 count matrix of 3322 human lung mucus secreting and neuroendocrine cells from CZ CELLxGENE Discover and their corresponding metadata. Fetch metadata (corresponds to AnnData.obs) only: gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv # Python\ndf = gget.cellxgene( meta_only = True, gene = \"ENSMUSG00000015405\", ensembl = True, tissue = \"lung\", species = \"mus_musculus\"\n)\ndf → Returns only the metadata from ENSMUSG00000015405 (ACE2) expression datasets corresponding to mouse lung cells. Also see: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html","breadcrumbs":"gget cellxgene » Examples","id":"30","title":"Examples"},"31":{"body":"If you use gget cellxgene in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/","breadcrumbs":"gget cellxgene » References","id":"31","title":"References"},"32":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Search for genes, mutations, and other factors associated with cancer using the COSMIC (Catalogue Of Somatic Mutations In Cancer) database. Return format: JSON (command-line) or data frame/CSV (Python) when download_cosmic=False. When download_cosmic=True, downloads the requested database into the specified folder. This module was written in part by @AubakirovArman (information querying) and @josephrich98 (database download). NOTE: License fees apply for the commercial use of COSMIC. You can read more about licensing COSMIC data here . Positional argument (for querying information) searchterm Search term, which can be a mutation, or gene name (or Ensembl ID), or sample, etc. Examples for the searchterm and entitity arguments: searchterm entitity EGFR mutations -> Find mutations in the EGFR gene that are associated with cancer v600e mutations -> Find genes for which a v600e mutation is associated with cancer COSV57014428 mutations -> Find mutations associated with this COSMIC mutations ID EGFR genes -> Get the number of samples, coding/simple mutations, and fusions observed in COSMIC for EGFR prostate cancer -> Get number of tested samples and mutations for prostate cancer prostate tumour_site -> Get number of tested samples, genes, mutations, fusions, etc. with 'prostate' as primary tissue site ICGC studies -> Get project code and descriptions for all studies from the ICGC (International Cancer Genome Consortium) EGFR pubmed -> Find PubMed publications on EGFR and cancer ICGC samples -> Get metadata on all samples from the ICGC (International Cancer Genome Consortium) COSS2907494 samples -> Get metadata on this COSMIC sample ID (cancer type, tissue, # analyzed genes, # mutations, etc.) NOTE: (Python only) Set to None when downloading COSMIC databases with download_cosmic=True. Optional arguments (for querying information) -e --entity 'mutations' (default), 'genes', 'cancer', 'tumour site', 'studies', 'pubmed', or 'samples'. Defines the type of the results to return. -l --limit Limits number of hits to return. Default: 100. Flags (for downloading COSMIC databases) -d --download_cosmic Switches into database download mode. -gm --gget_mutate TURNS OFF creation of a modified version of the database for use with gget mutate. Python: gget_mutate is True by default. Set gget_mutate=False to disable. Optional arguments (for downloading COSMIC databases) -mc --mutation_class 'cancer' (default), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', or 'cancer_example' Type of COSMIC database to download. -cv --cosmic_version Version of the COSMIC database. Default: None -> Defaults to latest version. -gv --grch_version Version of the human GRCh reference genome the COSMIC database was based on (37 or 38). Default: 37 --keep_genome_info Whether to keep genome information in the modified database for use with gget mutate. Default: False --remove_duplicates Whether to remove duplicate rows from the modified database for use with gget mutate. Default: False Optional arguments (general) -o --out Path to the file (or folder when downloading databases with the download_cosmic flag) the results will be saved in, e.g. 'path/to/results.json'. Default: None -> When download_cosmic=False: Results will be returned to standard out -> When download_cosmic=True: Database will be downloaded into current working directory Flags (general) -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget cosmic » gget cosmic 🪐","id":"32","title":"gget cosmic 🪐"},"33":{"body":"Query information gget cosmic EGFR # Python\ngget.cosmic(\"EGFR\") → Returns mutations in the EGFR gene that are associated with cancer in the format: Gene Syntax Alternate IDs Canonical EGFR c.*2446A>G EGFR c.*2446A>G, EGFR p.?, ... y EGFR c.(2185_2283)ins(18) EGFR c.(2185_2283)ins(18), EGFR p.?, ... y . . . . . . . . . . . .","breadcrumbs":"gget cosmic » Examples","id":"33","title":"Examples"},"34":{"body":"gget cosmic --download_cosmic # Python\ngget.cosmic(searchterm=None, download_cosmic=True) → Downloads the COSMIC cancer database of the latest COSMIC release into the current working directory.","breadcrumbs":"gget cosmic » Downloading COSMIC databases","id":"34","title":"Downloading COSMIC databases"},"35":{"body":"If you use gget cosmic in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903.","breadcrumbs":"gget cosmic » References","id":"35","title":"References"},"36":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Align multiple protein or translated DNA sequences using DIAMOND (DIAMOND is similar to BLAST, but this is a local computation). Return format: JSON (command-line) or data frame/CSV (Python). Positional argument query Sequences (str or list) or path to FASTA file containing sequences to be aligned against the reference. Required arguments -ref --reference Reference sequences (str or list) or path to FASTA file containing reference sequences. Optional arguments -db --diamond_db Path to save DIAMOND database created from reference (str). Default: None -> Temporary db file will be deleted after alignment or saved in out if out is provided. -s --sensitivity Sensitivity of alignment (str). Default: \"very-sensitive\". One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Number of threads used (int). Default: 1. -db --diamond_binary Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget. -o --out Path to the folder to save results in (str), e.g. \"path/to/directory\". Default: Standard out; temporary files are deleted. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget diamond » gget diamond 💎","id":"36","title":"gget diamond 💎"},"37":{"body":"# !!! Make sure to list the positional argument first here so it is not added as a reference sequence\ngget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS # Python\ngget.diamond([\"GGETISAWESQME\", \"ELVISISALIVE\", \"LQVEFRANKLIN\", \"PACHTERLABRQCKS\"], reference=[\"GGETISAWESQMEELVISISALIVELQVEFRANKLIN\", \"PACHTERLABRQCKS\"]) → Returns results in JSON (command-line) or data frame/CSV (Python) format: query_accession subject_accession identity_percentage query_seq_length subject_seq_length length mismatches gap_openings query_start query_end subject_start subject_end e-value bit_score Seq0 Seq0 100 13 37 13 0 0 1 13 1 13 2.82e-09 30.8 Seq2 Seq0 100 12 37 12 0 0 1 12 26 37 4.35e-08 27.7 Seq3 Seq1 100 15 15 15 0 0 1 15 1 15 2.01e-11 36.2 More examples","breadcrumbs":"gget diamond » Example","id":"37","title":"Example"},"38":{"body":"If you use gget diamond in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176","breadcrumbs":"gget diamond » References","id":"38","title":"References"},"39":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Locally predict Eukaryotic Linear Motifs from an amino acid sequence or UniProt Acc using data from the ELM database . Return format: JSON (command-line) or data frame/CSV (Python). This module returns two data frames (or JSON formatted files) (see examples). ELM data can be downloaded & distributed for non-commercial use according to the ELM Software License Agreement . Before using gget elm for the first time, run gget setup elm (bash) / gget.setup(\"elm\") (Python) once (also see gget setup ). Positional argument sequence Amino acid sequence or Uniprot Acc (str). When providing a Uniprot Acc, use flag --uniprot (Python: uniprot=True). Optional arguments -s --sensitivity Sensitivity of DIAMOND alignment (str). Default: \"very-sensitive\". One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Number of threads used in DIAMOND alignment (int). Default: 1. -bin --diamond_binary Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget. -o --out Path to the folder to save results in (str), e.g. \"path/to/directory\". Default: Standard out; temporary files are deleted. Flags -u --uniprot Set to True if sequence is a Uniprot Acc instead of an amino acid sequence. -e --expand Expand the information returned in the regex data frame to include the protein names, organisms, and references that the motif was orignally validated on. -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget elm » gget elm 🎭","id":"39","title":"gget elm 🎭"},"4":{"body":"Command line: # Fetch all Homo sapiens reference and annotation FTPs from the latest Ensembl release\n$ gget ref homo_sapiens # Get Ensembl IDs of human genes with \"ace2\" or \"angiotensin converting enzyme 2\" in their name/description\n$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2' # Look up gene ENSG00000130234 (ACE2) and its transcript ENST00000252519\n$ gget info ENSG00000130234 ENST00000252519 # Fetch the amino acid sequence of the canonical transcript of gene ENSG00000130234\n$ gget seq --translate ENSG00000130234 # Quickly find the genomic location of (the start of) that amino acid sequence\n$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # BLAST (the start of) that amino acid sequence\n$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Align multiple nucleotide or amino acid sequences against each other (also accepts path to FASTA file) $ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Align one or more amino acid sequences against a reference (containing one or more sequences) (local BLAST) (also accepts paths to FASTA files) $ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Use Enrichr for an ontology analysis of a list of genes\n$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P # Get the human tissue expression of gene ACE2\n$ gget archs4 -w tissue ACE2 # Get the protein structure (in PDB format) of ACE2 as stored in the Protein Data Bank (PDB ID returned by gget info)\n$ gget pdb 1R42 -o 1R42.pdb # Find Eukaryotic Linear Motifs (ELMs) in a protein sequence\n$ gget setup elm # setup only needs to be run once\n$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Fetch a scRNAseq count matrix (AnnData format) based on specified gene(s), tissue(s), and cell type(s) (default species: human)\n$ gget setup cellxgene # setup only needs to be run once\n$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad # Predict the protein structure of GFP from its amino acid sequence\n$ gget setup alphafold # setup only needs to be run once\n$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK Python (Jupyter Lab / Google Colab): import gget\ngget.ref(\"homo_sapiens\")\ngget.search([\"ace2\", \"angiotensin converting enzyme 2\"], \"homo_sapiens\")\ngget.info([\"ENSG00000130234\", \"ENST00000252519\"])\ngget.seq(\"ENSG00000130234\", translate=True)\ngget.blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"])\ngget.diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"], database=\"ontology\", plot=True)\ngget.archs4(\"ACE2\", which=\"tissue\")\ngget.pdb(\"1R42\", save=True) gget.setup(\"elm\") # setup only needs to be run once\northo_df, regex_df = gget.elm(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\") gget.setup(\"cellxgene\") # setup only needs to be run once\ngget.cellxgene(gene = [\"ACE2\", \"SLC5A1\"], tissue = \"lung\", cell_type = \"mucus secreting cell\") gget.setup(\"alphafold\") # setup only needs to be run once\ngget.alphafold(\"MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK\") Call gget from R using reticulate : system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") gget$ref(\"homo_sapiens\")\ngget$search(list(\"ace2\", \"angiotensin converting enzyme 2\"), \"homo_sapiens\")\ngget$info(list(\"ENSG00000130234\", \"ENST00000252519\"))\ngget$seq(\"ENSG00000130234\", translate=TRUE)\ngget$blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$muscle(list(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"), out=\"out.afa\")\ngget$diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"), database=\"ontology\")\ngget$archs4(\"ACE2\", which=\"tissue\")\ngget$pdb(\"1R42\", save=TRUE) More examples","breadcrumbs":"Quick Start Guide » 🪄 Quick start guide","id":"4","title":"🪄 Quick start guide"},"40":{"body":"Find ELMs in an amino acid sequence: gget setup elm # Downloads/updates local ELM database\ngget elm -o gget_elm_results LIAQSIGQASFV # Python\ngget.setup(“elm”) # Downloads/updates local ELM database\northolog_df, regex_df = gget.elm(\"LIAQSIGQASFV\") Find ELMs giving a UniProt Acc as input: gget setup elm # Downloads/updates local ELM database\ngget elm -o gget_elm_results --uniprot Q02410 -e # Python\ngget.setup(“elm”) # Downloads/updates local ELM database\northolog_df, regex_df = gget.elm(\"Q02410\", uniprot=True, expand=True) → Returns two data frames (or JSON formatted dictionaries for command line) containing extensive information about linear motifs associated with orthologous proteins and motifs found in the input sequence directly based on their regex expressions: ortholog_df: Ortholog_UniProt_Acc ProteinName class_accession ELMIdentifier FunctionalSiteName Description Organism … Q02410 APBA1_HUMAN ELME000357 LIG_CaMK_CASK_1 CASK CaMK domain binding ligand motif Motif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2. Homo sapiens … Q02410 APBA1_HUMAN ELME000091 LIG_PDZ_Class_2 PDZ domain ligands The C-terminal class 2 PDZ-binding motif is classically represented by a pattern such as Homo sapiens … regex_df: Instance_accession ELMIdentifier FunctionalSiteName ELMType Description Instances (Matched Sequence) Organism … ELME000321 CLV_C14_Caspase3-7 Caspase cleavage motif CLV Caspase-3 and Caspase-7 cleavage site. ERSDG Mus musculus … ELME000102 CLV_NRD_NRD_1 NRD cleavage site CLV N-Arg dibasic convertase (NRD/Nardilysin) cleavage site. RRA Rattus norvegicus … ELME000100 CLV_PCSK_PC1ET2_1 PCSK cleavage site CLV NEC1/NEC2 cleavage site. KRD Mus musculus … ELME000146 CLV_PCSK_SKI1_1 PCSK cleavage site CLV Subtilisin/kexin isozyme-1 (SKI1) cleavage site. RLLTA Homo sapiens … ELME000231 DEG_APCC_DBOX_1 APCC-binding Destruction motifs DEG An RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent manner SRVKLNIVR Saccharomyces cerevisiae S288c … … … … … … … … …","breadcrumbs":"gget elm » Examples","id":"40","title":"Examples"},"41":{"body":"","breadcrumbs":"gget elm » Tutorials","id":"41","title":"Tutorials"},"42":{"body":"","breadcrumbs":"gget elm » 🔗 General gget elm demo","id":"42","title":"🔗 General gget elm demo"},"43":{"body":"","breadcrumbs":"gget elm » 🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif","id":"43","title":"🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif"},"44":{"body":"","breadcrumbs":"gget elm » 🔗 Filter gget elm results based on disordered protein regions","id":"44","title":"🔗 Filter gget elm results based on disordered protein regions"},"45":{"body":"If you use gget elm in a publication, please cite the following articles: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics , 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975","breadcrumbs":"gget elm » References","id":"45","title":"References"},"46":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Perform an enrichment analysis on a list of genes using Enrichr or modEnrichr . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument genes Short names (gene symbols) of genes to perform enrichment analysis on, e.g. PHF14 RBM3 MSL1 PHF21A. Alternatively: use flag --ensembl to input a list of Ensembl gene IDs, e.g. ENSG00000106443 ENSG00000102317 ENSG00000188895. Other required arguments -db --database Database database to use as reference for the enrichment analysis. Supports any database listed here under 'Gene-set Library' or one of the following shortcuts: 'pathway' (KEGG_2021_Human) 'transcription' (ChEA_2016) 'ontology' (GO_Biological_Process_2021) 'diseases_drugs' (GWAS_Catalog_2019) 'celltypes' (PanglaoDB_Augmented_2021) 'kinase_interactions' (KEA_2015) NOTE: database shortcuts are not supported for species other than 'human' or 'mouse'. Click on the species databases listed below under species to view a list of databases available for each species. Optional arguments -s --species Species to use as reference for the enrichment analysis. (Default: human) Options: Species Database list human Enrichr mouse Equivalent to human fly FlyEnrichr yeast YeastEnrichr worm WormEnrichr fish FishEnrichr -bkg_l --background_list Short names (gene symbols) of background genes to perform enrichment analysis on, e.g. NSUN3 POLRMT NLRX1. Alternatively: use flag --ensembl_background to input a list of Ensembl gene IDs. See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis. -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). (Default: Standard out.) Python: save=True will save the output in the current working directory. -ko --kegg_out Path to the png file the marked KEGG pathway images will be saved in, e.g. path/to/directory/pathway.png. (Default: None) -kr --kegg_rank Rank of the KEGG pathway to be plotted. (Default: 1) figsize Python only. (width, height) of plot in inches. (Default: (10,10)) ax Python only. Pass a matplotlib axes object for plot customization. (Default: None) Flags -e --ensembl Add this flag if genes are given as Ensembl gene IDs. -e_b --ensembl_background Add this flag if background_list are given as Ensembl gene IDs. -bkg --background If True, use set of > 20,000 default background genes listed here . -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. plot Python only. plot=True provides a graphical overview of the first 15 results (default: False).","breadcrumbs":"gget enrichr » gget enrichr 💰","id":"46","title":"gget enrichr 💰"},"47":{"body":"gget enrichr -db ontology ACE2 AGT AGTR1 # Python\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\"], database=\"ontology\", plot=True) → Returns pathways/functions involving genes ACE2, AGT, and AGTR1 from the GO Biological Process 2021 database. In Python, plot=True returns a graphical overview of the results: alt text Use gget enrichr with a background gene list: See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis. # Here, we are passing the input genes first (positional argument 'genes'), so they are not added to the background gene list behind the '-bkgr_l' argument\ngget enrichr \\ PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \\ -db ChEA_2022 \\ -bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2 # Python\ngget.enrichr( genes = [ \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\", \"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\" ], database = \"ChEA_2022\", background_list = [ \"NSUN3\",\"POLRMT\",\"NLRX1\",\"SFXN5\",\"ZC3H12C\",\"SLC25A39\",\"ARSG\", \"DEFB29\",\"PCMTD2\",\"ACAA1A\",\"LRRC1\",\"2810432D09RIK\",\"SEPHS2\", \"SAC3D1\",\"TMLHE\",\"LOC623451\",\"TSR2\",\"PLEKHA7\",\"GYS2\",\"ARHGEF12\", \"HIBCH\",\"LYRM2\",\"ZBTB44\",\"ENTPD5\",\"RAB11FIP2\",\"LIPT1\", \"INTU\",\"ANXA13\",\"KLF12\",\"SAT2\",\"GAL3ST2\",\"VAMP8\",\"FKBPL\", \"AQP11\",\"TRAP1\",\"PMPCB\",\"TM7SF3\",\"RBM39\",\"BRI3\",\"KDR\",\"ZFP748\", \"NAP1L1\",\"DHRS1\",\"LRRC56\",\"WDR20A\",\"STXBP2\",\"KLF1\",\"UFC1\", \"CCDC16\",\"9230114K14RIK\",\"RWDD3\",\"2610528K11RIK\",\"ACO1\", \"CABLES1\", \"LOC100047214\",\"YARS2\",\"LYPLA1\",\"KALRN\",\"GYK\", \"ZFP787\",\"ZFP655\",\"RABEPK\",\"ZFP650\",\"4732466D17RIK\",\"EXOSC4\", \"WDR42A\",\"GPHN\",\"2610528J11RIK\",\"1110003E01RIK\",\"MDH1\",\"1200014M14RIK\", \"AW209491\",\"MUT\",\"1700123L14RIK\",\"2610036D13RIK\", \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\",\"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\"\"COX15\",\"TMEM30A\",\"NSMCE4A\",\"TM2D2\",\"RHBDD3\",\"ATXN2\",\"NFS1\", \"3110001I20RIK\",\"BC038156\",\"C330002I19RIK\",\"ZFYVE20\",\"POLI\",\"TOMM70A\", \"LOC100047782\",\"2410012H22RIK\",\"RILP\",\"A230062G08RIK\", \"PTTG1IP\",\"RAB1\",\"AFAP1L1\", \"LYRM5\",\"2310026E23RIK\", \"SLC7A6OS\",\"MAT2B\",\"4932438A13RIK\",\"LRRC8A\",\"SMO\",\"NUPL2\" ], plot=True\n) → Returns hits of the input gene list given the background gene list from the transcription factor/target library ChEA 2022 . In Python, plot=True returns a graphical overview of the results: alt text Generate a KEGG pathway image with the genes from the enrichment analysis highlighted: This feature is available thanks to a PR by Noriaki Sato . gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1 # Python\ngget.enrichr([\"ZBP1\", \"IRF3\", \"RIPK1\"], database=\"pathway\", kegg_out=\"kegg.png\", kegg_rank=1) → In addition to the standard gget enrichr output, the kegg_out argument saves an image with the genes from the enrichment analysis highlighted in the KEGG pathway: kegg The following example was submitted by Dylan Lawless via PR : Use gget enrichr in R and create a similar plot using ggplot . NOTE the switch of axes compared to the Python plot. system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") # Perform enrichment analysis on a list of genes\ndf <- gget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\"), database = \"ontology\") # Count number of overlapping genes\ndf$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric() # Only keep the top 15 results\ndf <- df[1:15, ] # Plot\nlibrary(ggplot2) df |> ggplot() + geom_bar(aes( x = -log10(adj_p_val), y = reorder(path_name, -adj_p_val) ), stat = \"identity\", fill = \"lightgrey\", width = 0.5, color = \"black\") + geom_text( aes( y = path_name, x = (-log10(adj_p_val)), label = overlapping_genes_count ), nudge_x = 0.75, show.legend = NA, color = \"red\" ) + geom_text( aes( y = Inf, x = Inf, hjust = 1, vjust = 1, label = \"# of overlapping genes\" ), show.legend = NA, color = \"red\" ) + geom_vline(linetype = \"dotted\", linewidth = 1, xintercept = -log10(0.05)) + ylab(\"Pathway name\") + xlab(\"-log10(adjusted P value)\")","breadcrumbs":"gget enrichr » Examples","id":"47","title":"Examples"},"48":{"body":"Using gget enrichr with background genes","breadcrumbs":"gget enrichr » Tutorials","id":"48","title":"Tutorials"},"49":{"body":"If you use gget enrichr in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . If working with non-human/mouse datasets, please also cite: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483.","breadcrumbs":"gget enrichr » References","id":"49","title":"References"},"5":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Predict the 3D structure of a protein from its amino acid sequence using a simplified version of DeepMind ’s AlphaFold2 originally released and benchmarked for AlphaFold Colab . Returns: Predicted structure (PDB) and alignment error (json). Before using gget alphafold for the first time: Install the third-party dependency openmm v7.5.1 (or v7.7.0 for Python >= 3.10) by running the following command from the command line: conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1 (replace with openmm=7.7.0 for Python >= 3.10) Recommendation: Follow with conda update -qy conda to update conda to the latest version afterwards. Run gget setup alphafold / gget.setup(\"alphafold\") once (also see gget setup ). Running gget setup alphafold / gget.setup(\"alphafold\") will download and install the latest version of AlphaFold2 hosted on the AlphaFold GitHub Repo . You can rerun this command any time to update the software after a new AlphaFold release. Positional argument sequence Amino acid sequence (str), or list of sequences ( gget alphafold will automatically use the multimer model if multiple sequences are passed ), or path to FASTA file. Optional arguments -mr --multimer_recycles The multimer model will continue recycling until the predictions stop changing, up to the limit set here. Default: 3. For higher accuracy, at the potential cost of longer inference times, set this to 20. -o --out Path to folder to save prediction results in (str). Default: \"./[date_time]_gget_alphafold_prediction\". Flags -mfm --multimer_for_monomer Use multimer model for a monomer. -r --relax AMBER relax the best model. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. plot Python only. plot=True provides an interactive, 3D graphical overview of the predicted structure and alignment quality using py3Dmol and matplotlib (default: True). show_sidechains Python only. show_sidechains=True includes side chains in the plot (default: True).","breadcrumbs":"gget alphafold » gget alphafold 🪢","id":"5","title":"gget alphafold 🪢"},"50":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Generates natural language text based on a given prompt using the OpenAI API's 'openai.ChatCompletion.create' endpoint. This module, including its source code, documentation and unit tests, were partly written by OpenAI's Chat-GTP3. NOTE: OpenAI API calls are only 'free' for the first three months after generating your OpenAI Account (OpenAI provides a $5 credit that expires). You can define a hard monthly billing limit (e.g. $1) here . See their pricing and FAQ here . Get your OpenAI API key here . Returns: A string containing the generated text. Before using gget gpt for the first time, run gget setup gpt / gget.setup(\"gpt\") once (also see gget setup ). Positional argument prompt The input prompt to generate text from (str). api_key Your OpenAI API key (str) ( get your API key ). Optional arguments -m --model The name of the GPT model to use for generating the text (str). Default is \"gpt-3.5-turbo\". See https://platform.openai.com/docs/models/gpt-4 for more information on the available models. -temp --temperature Value between 0 and 2 that controls the level of randomness and creativity in the generated text (float). Higher values result in more creative and varied text. Default is 1. -tp --top_p Controls the diversity of the generated text as an alternative to sampling with temperature (float). Higher values result in more diverse and unexpected text. Default is 1. Note: OpenAI recommends altering this or temperature but not both. -s --stop A sequence of tokens to mark the end of the generated text (str). Default is None. -mt --max_tokens Controls the maximum length of the generated text, in tokens (int). Default is 200. -pp --presence_penalty Number between -2.0 and 2.0. Higher values result increase the model's likelihood to talk about new topics (float). Default is 0. -fp --frequency_penalty Number between -2.0 and 2.0. Higher values decrease the model's likelihood to repeat the same line verbatim (float). Default is 0. -lb --logit_bias A dictionary that specifies a bias towards certain tokens in the generated text (dict). Default is None. -o --out If provided, saves the generated text to a file with the specified path (str). Default: Standard out.","breadcrumbs":"gget gpt » gget gpt 💬","id":"50","title":"gget gpt 💬"},"51":{"body":"gget gpt \"How are you today GPT?\" your_api_token # Python\nprint(gget.gpt(\"How are you today GPT?\", \"your_api_token\"))","breadcrumbs":"gget gpt » Example","id":"51","title":"Example"},"52":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch extensive gene and transcript metadata from Ensembl , UniProt , and NCBI using Ensembl IDs. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument ens_ids One or more Ensembl IDs (WormBase and Flybase IDs are also supported). Optional arguments -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -n --ncbi TURN OFF results from NCBI . Python: ncbi=False prevents data retrieval from NCBI (default: True). -u --uniprot TURN OFF results from UniProt . Python: uniprot=False prevents data retrieval from UniProt (default: True). -pdb --pdb INCLUDE PDB IDs in output (might increase runtime). Python: pdb=True includes PDB IDs in the results (default: False). -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget info » gget info 💡","id":"52","title":"gget info 💡"},"53":{"body":"gget info ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.info([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Returns extensive information about each requested Ensembl ID: uniprot_id ncbi_gene_id primary_gene_name synonyms protein_names ensembl_description uniprot_description ncbi_description biotype canonical_transcript ... ENSG00000034713 P60520 11345 GABARAPL2 [ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2] Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)... GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ... Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein... protein_coding ENST00000037243.7 ... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ... More examples","breadcrumbs":"gget info » Example","id":"53","title":"Example"},"54":{"body":"If you use gget info in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"gget info » References","id":"54","title":"References"},"55":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Align multiple nucleotide or amino acid sequences to each other using Muscle5 . Return format: ClustalW formatted standard out or aligned FASTA (.afa). Positional argument fasta List of sequences or path to FASTA or .txt file containing the nucleotide or amino acid sequences to be aligned. Optional arguments -o --out Path to the aligned FASTA file the results will be saved in, e.g. path/to/directory/results.afa. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -s5 --super5 Aligns input using the Super5 algorithm instead of the Parallel Perturbed Probcons (PPP) algorithm to decrease time and memory. Use for large inputs (a few hundred sequences). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget muscle » gget muscle 🦾","id":"55","title":"gget muscle 🦾"},"56":{"body":"gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Python\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"]) gget muscle fasta.fa # Python\ngget.muscle(\"fasta.fa\") → Returns an overview of the aligned sequences with ClustalW coloring. (To return an aligned FASTA (.afa) file, use --out argument (or save=True in Jupyter Lab/Google Colab).) In the above example, the 'fasta.fa' includes several sequences to be aligned (e.g. isoforms returned from gget seq). alt text You can also view aligned fasta files returned by gget.muscle using programs like alv , as shown below: # Python\n!pip install biopython\n!pip install alv\nfrom Bio import AlignIO\nimport alv gget.muscle(\"fasta.fa\", out=\"fasta_aligned.afa\")\nmsa = AlignIO.read(\"fasta_aligned.afa\", \"fasta\")\nalv.view(msa) More examples","breadcrumbs":"gget muscle » Example","id":"56","title":"Example"},"57":{"body":"If you use gget muscle in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169","breadcrumbs":"gget muscle » References","id":"57","title":"References"},"58":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Takes in nucleotide sequences and mutations (in standard mutation annotation and returns mutated versions of the input sequences according to the provided mutations. Return format: Saves mutated sequences in FASTA format (or returns a list containing the mutated sequences if out=None). This module was written by Joseph Rich . Positional argument sequences Path to the FASTA file containing the sequences to be mutated, e.g., 'path/to/seqs.fa'. Sequence identifiers following the '>' character must correspond to the identifiers in the seq_ID column of mutations. Example format of the FASTA file: >seq1 (or ENSG00000106443) ACTGCGATAGACT >seq2 AGATCGCTAG Alternatively: Input sequence(s) as a string or list, e.g. 'AGCTAGCT'. NOTE: Only the letters until the first space or dot will be used as sequence identifiers - Version numbers of Ensembl IDs will be ignored. NOTE: When the sequences input is a genome fasta file, also see the gtf argument below. Required arguments -m --mutations Path to the csv or tsv file (e.g., 'path/to/mutations.csv') or data frame (DataFrame object) containing information about the mutations in the following format (the 'notes' and 'mut_ID' columns are optional): mutation mut_ID seq_ID notes c.2C>T mut1 seq1 -> Apply mutation 1 to sequence 1 c.9_13inv mut2 seq2 -> Apply mutation 2 to sequence 2 c.9_13inv mut2 seq4 -> Apply mutation 2 to sequence 4 c.9_13delinsAAT mut3 seq4 -> Apply mutation 3 to sequence 4 ... ... ... 'mutation' = Column containing the mutations to be performed written in standard mutation annotation 'mut_ID' = Column containing the identifier for each mutation 'seq_ID' = Column containing the identifiers of the sequences to be mutated (must correspond to the string following the '>' character in the 'sequences' FASTA file; do NOT include spaces or dots) Alternatively: Input mutation(s) as a string or list, e.g., 'c.2C>T'. If a list is provided, the number of mutations must equal the number of input sequences. For use from the terminal (bash): Enclose individual mutation annotations in quotation marks to prevent parsing errors. Optional input-related arguments -mc --mut_column Name of the column containing the mutations to be performed in mutations. Default: 'mutation'. -sic --seq_id_column Name of the column containing the IDs of the sequences to be mutated in mutations. Default: 'seq_ID'. -mic --mut_id_column Name of the column containing the IDs of each mutation in mutations. Default: Same as mut_column. -gtf --gtf Path to a .gtf file. When providing a genome fasta file as input for 'sequences', you can provide a .gtf file here and the input sequences will be defined according to the transcript boundaries, e.g. 'path/to/genome_annotation.gtf'. Default: None -gtic --gtf_transcript_id_column Column name in the input mutations file containing the transcript ID. In this case, column seq_id_column should contain the chromosome number. Required when gtf is provided. Default: None Optional mutant sequence generation/filtering arguments -k --k Length of sequences flanking the mutation. Default: 30. If k > total length of the sequence, the entire sequence will be kept. -msl --min_seq_len Minimum length of the mutant output sequence, e.g. 100. Mutant sequences smaller than this will be dropped. Default: None -ma --max_ambiguous Maximum number of 'N' (or 'n') characters allowed in the output sequence, e.g. 10. Default: None (no ambiguous character filter will be applied) Optional mutant sequence generation/filtering flags -ofr --optimize_flanking_regions Removes nucleotides from either end of the mutant sequence to ensure (when possible) that the mutant sequence does not contain any k-mers also found in the wildtype/input sequence. -rswk --remove_seqs_with_wt_kmers Removes output sequences where at least one k-mer is also present in the wildtype/input sequence in the same region. When used with --optimize_flanking_regions, only sequences for which a wildtype k-mer is still present after optimization will be removed. -mio --merge_identical_off Do not merge identical mutant sequences in the output (by default, identical sequences will be merged by concatenating the sequence headers for all identical sequences). Optional arguments to generate additional output This output is activated using the --update_df flag and will be stored in a copy of the mutations DataFrame. -udf_o --update_df_out Path to output csv file containing the updated DataFrame, e.g. 'path/to/mutations_updated.csv'. Only valid when used with --update_df. Default: None -> the new csv file will be saved in the same directory as the mutations DataFrame with appendix '_updated' -ts --translate_start (int or str) The position in the input nucleotide sequence to start translating, e.g. 5. If a string is provided, it should correspond to a column name in mutations containing the open reading frame start positions for each sequence/mutation. Only valid when used with --translate. Default: translates from the beginning of each sequence -te --translate_end (int or str) The position in the input nucleotide sequence to end translating, e.g. 35. If a string is provided, it should correspond to a column name in mutations containing the open reading frame end positions for each sequence/mutation. Only valid when used with --translate. Default: translates until the end of each sequence Optional flags to modify additional output -udf --update_df Updates the input mutations DataFrame to include additional columns with the mutation type, wildtype nucleotide sequence, and mutant nucleotide sequence (only valid if mutations is a .csv or .tsv file). -sfs --store_full_sequences Includes the complete wildtype and mutant sequences in the updated mutations DataFrame (not just the sub-sequence with k-length flanks). Only valid when used with --update_df. -tr --translate Adds additional columns to the updated mutations DataFrame containing the wildtype and mutant amino acid sequences. Only valid when used with --store_full_sequences. Optional general arguments -o --out Path to output FASTA file containing the mutated sequences, e.g., 'path/to/output_fasta.fa'. Default: None -> returns a list of the mutated sequences to standard out. The identifiers (following the '>') of the mutated sequences in the output FASTA will be '>[seq_ID]_[mut_ID]'. Optional general flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget mutate » gget mutate 🧟","id":"58","title":"gget mutate 🧟"},"59":{"body":"gget mutate ATCGCTAAGCT -m 'c.4G>T' # Python\ngget.mutate(\"ATCGCTAAGCT\", \"c.4G>T\") → Returns ATCTCTAAGCT. List of sequences with a mutation for each sequence provided in a list: gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], [\"c.4G>T\", \"c.1_3inv\"], out=\"mut_fasta.fa\") → Saves 'mut_fasta.fa' file containing: >seq1_mut1 ATCTCTAAGCT >seq2_mut2 GATCTA One mutation applied to several sequences with adjusted k: gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3 # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], \"c.1_3inv\", k=3) → Returns ['CTAGCT', 'GATCTA']. Add mutations to an entire genome with extended output Main input: mutation information as a mutations CSV (by having seq_id_column contain chromosome information, and mut_column contain mutation information with respect to genome coordinates) the genome as the sequences file Since we are passing the path to a gtf file to the gtf argument, transcript boundaries will be respected (the genome will be split into transcripts). gtf_transcript_id_column specifies the name of the column in mutations containing the transcript IDs corresponding to the transcript IDs in the gtf file. The optimize_flanking_regions argument maximizes the length of the resulting mutation-containing sequences while maintaining specificity (no wildtype k-mer will be retained). update_df activates the creation of a new CSV file with updated information about each input and output sequence. This new CSV file will be saved as update_df_out. Since store_full_sequences is activated, this new CSV file will not only contain the output sequences (restricted in size by flanking regiong of size k), but also the complete input and output sequences. This allows us to observe the mutation in the context of the entire sequence. Lastly, we are also adding the translated versions of the complete sequences by adding the with the translate flag, so we can observe how the resulting amino acid sequence is changed. The translate_start and translate_end arguments specify the names of the columns in mutations that contain the start and end positions of the open reading frame (start and end positions for translating the nucleotide sequence to an amino acid sequence), respectively. gget mutate \\ -m mutations_input.csv \\ -o mut_fasta.fa \\ -k 4 \\ -sic Chromosome \\ -mic Mutation \\ -gtf genome_annotation.gtf \\ -gtic Ensembl_Transcript_ID \\ -ofr \\ -update_df \\ -udf_o mutations_updated.csv \\ -sfs \\ -tr \\ -ts Translate_Start \\ -te Translate_End \\ genome_reference.fa # Python\ngget.mutate(sequences=\"genome_reference.fa\", mutations=\"mutations_input.csv\", out=\"mut_fasta.fa\", k=4, seq_id_column=\"Chromosome\", mut_column=\"Mutation\", gtf=\"genome_annotation.gtf\", gtf_transcript_id_column=\"Ensembl_Transcript_ID\", optimize_flanking_regions=True, update_df=True, update_df_out=\"mutations_updated.csv\", store_full_sequences=True, translate=True, translate_start=\"Translate_Start\", translate_end=\"Translate_End\") → Takes as input 'mutations_input.csv' file containing: | Chromosome | Mutation | Ensembl_Transcript_ID | Translate_Start | Translate_End |\n|------------|-------------------|------------------------|-----------------|---------------|\n| 1 | g.224411A>C | ENST00000193812 | 0 | 100 |\n| 8 | g.25111del | ENST00000174411 | 0 | 294 |\n| X | g.1011_1012insAA | ENST00000421914 | 9 | 1211 | → Saves 'mut_fasta.fa' file containing: >1:g.224411A>C TGCTCTGCT >8:g.25111del GAGTCGAT\n>X:g.1011_1012insAA\nTTAGAACTT → Saves 'mutations_updated.csv' file containing: | Chromosome | Mutation | Ensembl_Transcript_ID | mutation_type | wt_sequence | mutant_sequence | wt_sequence_full | mutant_sequence_full | wt_sequence_aa_full | mutant_sequence_aa_full |\n|------------|-------------------|------------------------|---------------|-------------|-----------------|-------------------|----------------------|---------------------|-------------------------|\n| 1 | g.224411A>C | ENSMUST00000193812 | Substitution | TGCTATGCT | TGCTCTGCT | ...TGCTATGCT... | ...TGCTCTGCT... | ...CYA... | ...CSA... |\n| 8 | g.25111del | ENST00000174411 | Deletion | GAGTCCGAT | GAGTCGAT | ...GAGTCCGAT... | ...GAGTCGAT... | ...ESD... | ...ES... |\n| X | g.1011_1012insAA | ENST00000421914 | Insertion | TTAGCTT | TTAGAACTT | ...TTAGCTT... | ...TTAGAACTT... | ...A... | ...EL... |","breadcrumbs":"gget mutate » Examples","id":"59","title":"Examples"},"6":{"body":"# Generate new prediction from amino acid sequence\ngget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Find similar sequences deposited on the PDB for comparative analysis\ngget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality\ngget pdb 3UQ3 -o 3UQ3.pdb\ngget pdb 2K42 -o 2K42.pdb # Python\ngget.alphafold(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\") # Find similar sequences deposited on the PDB for comparative analysis\ngget.blast(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\", database=\"pdbaa\") # Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality\ngget.pdb(\"3UQ3\", save=True)\ngget.pdb(\"2K42\", save=True) → gget alphafold returns the predicted structure (PDB) and predicted alignment error (.json) in a new folder (\"./[date_time]_gget_alphafold_prediction\"). The use case above exemplifies how to use gget blast and gget pdb for a comparative analysis of the new prediction. PDB files can be viewed interactively in 3D online , or using programs like PyMOL or Blender . To compare two PDB files, you can use this website . The Python interface also returns interactive plots , which can be generated from the PDB and JSON as described in the gget alphafold FAQ Q4.","breadcrumbs":"gget alphafold » Example","id":"6","title":"Example"},"60":{"body":"If you use gget mutate in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836","breadcrumbs":"gget mutate » References","id":"60","title":"References"},"61":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch associated diseases or drugs from OpenTargets using Ensembl IDs. Return format: JSON/CSV (command-line) or data frame (Python). This module was written by Sam Wagenaar . Positional argument ens_id Ensembl gene ID, e.g ENSG00000169194. Optional arguments -r --resource Defines the type of information to return in the output. Default: 'diseases'. Possible resources are: Resource Return Value Valid Filters Sources diseases Associated diseases None Various: Open Targets ChEMBL Europe PMC etc. drugs Associated drugs disease_id ChEMBL tractability Tractability data None Open Targets pharmacogenetics Pharmacogenetic responses drug_id PharmGKB expression Gene expression data (by tissues, organs, and anatomical systems) tissue_idanatomical_systemorgan ExpressionAtlas HPA GTEx depmap DepMap gene→disease-effect data. tissue_id DepMap Portal interactions Protein⇄protein interactions protein_a_idprotein_b_idgene_b_id Open Targets IntAct Signor Reactome String -l --limit Limit the number of results, e.g 10. Default: No limit. Note: Not compatible with the tractability and depmap resources. -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Python: save=True will save the output in the current working directory. Optional filter arguments -fd --filter_disease disease_id Filter by disease ID, e.g. 'EFO_0000274'. Only valid for the drugs resource. -fc --filter_drug drug_id Filter by drug ID, e.g. 'CHEMBL1743081'. Only valid for the pharmacogenetics resource. -ft --filter_tissue tissue_id Filter by tissue ID, e.g. 'UBERON_0000473'. Only valid for the expression and depmap resources. -fa --filter_anat_sys Filter by anatomical system, e.g. 'nervous system'. Only valid for the expression resource. -fo --filter_organ anatomical_system Filter by organ, e.g. 'brain'. Only valid for the expression resource. -fpa --filter_protein_a protein_a_id Filter by the protein ID of the first protein in the interaction, e.g. 'ENSP00000304915'. Only valid for the interactions resource. -fpb --filter_protein_b protein_b_id Filter by the protein ID of the second protein in the interaction, e.g. 'ENSP00000379111'. Only valid for the interactions resource. -fgb --filter_gene_b gene_b_id Filter by the gene ID of the second protein in the interaction, e.g. 'ENSG00000077238'. Only valid for the interactions resource. filters Python only. A dictionary of filters, e.g. {'disease_id': ['EFO_0000274', 'HP_0000964']} filter_mode Python only. filter_mode='or' combines filters of different IDs with OR logic. filter_mode='and' combines filters of different IDs with AND logic (default). Flags -csv --csv Command-line only. Returns the output in CSV format, instead of JSON format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. -or --or Command-line only. Filters are combined with OR logic. Default: AND logic. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget opentargets » gget opentargets 🎯","id":"61","title":"gget opentargets 🎯"},"62":{"body":"Get associated diseases for a specific gene: gget opentargets ENSG00000169194 -r diseases -l 1 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='diseases', limit=1) → Returns the top disease associated with the gene ENSG00000169194. id name description score EFO_0000274 atopic eczema A chronic inflammatory genetically determined disease of the skin ... 0.66364347241831 Get associated drugs for a specific gene: gget opentargets ENSG00000169194 -r drugs -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='drugs', limit=2) → Returns the top 2 drugs associated with the gene ENSG00000169194. id name type action_mechanism description synonyms trade_names disease_id disease_name trial_phase trial_status trial_ids approved CHEMBL1743081 TRALOKINUMAB Antibody Interleukin‑13 inhibitor Antibody drug with a maximum clinical trial phase of IV ... ['CAT-354', 'Tralokinumab'] ['Adbry', 'Adtralza'] EFO_0000274 atopic eczema 4 [] True CHEMBL4297864 CENDAKIMAB Antibody Interleukin‑13 inhibitor Antibody drug with a maximum clinical trial phase of III ... [ABT-308, Abt-308, CC-93538, Cendakimab, RPC-4046] [] EFO_0004232 eosinophilic esophagitis 3 Recruiting [NCT04991935] False Note: Returned trial_ids are ClinicalTrials.gov identifiers Get tractability data for a specific gene: gget opentargets ENSG00000169194 -r tractability # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='tractability') → Returns tractability data for the gene ENSG00000169194. label modality High-Quality Pocket Small molecule Approved Drug Antibody GO CC high conf Antibody UniProt loc med conf Antibody UniProt SigP or TMHMM Antibody Get pharmacogenetic responses for a specific gene: gget opentargets ENSG00000169194 -r pharmacogenetics -l 1 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='pharmacogenetics', limit=1) → Returns pharmacogenetic responses for the gene ENSG00000169194. rs_id genotype_id genotype variant_consequence_id variant_consequence_label drugs phenotype genotype_annotation response_category direct_target evidence_level source literature rs1295686 5_132660151_T_T,T TT SO:0002073 no_sequence_alteration id name0 None hepatitis vaccines increased risk for non‑immune response to the hepatitis B vaccine Patients with the TT genotype may be at increased risk for non-immune response to the hepatitis B vaccine... efficacy False 3 pharmgkb [21111021] Note: Returned literature ids are Europe PMC identifiers Get tissues where a gene is most expressed: gget opentargets ENSG00000169194 -r expression -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='expression', limit=2) → Returns the top 2 tissues where the gene ENSG00000169194 is most expressed. tissue_id tissue_name rna_zscore rna_value rna_unit rna_level anatomical_systems organs UBERON_0000473 testis 5 1026 3 [reproductive system] [reproductive organ, reproductive structure] CL_0000542 EBV‑transformed lymphocyte 1 54 2 [hemolymphoid system, immune system, lymphoid system] [immune organ] Get DepMap gene-disease effect data for a specific gene: gget opentargets ENSG00000169194 -r depmap # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='depmap') → Returns DepMap gene-disease effect data for the gene ENSG00000169194. depmap_id expression effect tissue_id tissue_name cell_line_name disease_cell_line_id disease_name mutation ACH‑001532 0.176323 0.054950 UBERON_0002113 kidney JMU-RTK-2 None Rhabdoid Cancer None Get protein-protein interactions for a specific gene: gget opentargets ENSG00000169194 -r interactions -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='interactions', limit=2) → Returns the top 2 protein-protein interactions for the gene ENSG00000169194. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000379111 ENSG00000077238 IL4R unspecified role 9606 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000360730 ENSG00000131724 IL13RA1 unspecified role 9606 Get protein-protein interactions for a specific gene, filtering by protein and gene IDs: gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': 'ENSG00000077238'}) → Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 and the second gene is ENSG00000077238. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b None 3 reactome P35225 ENSG00000169194 IL13 unspecified role 9606 P24394 ENSG00000077238 IL4R unspecified role 9606 None 2 signor P35225 ENSG00000169194 IL13 regulator 9606 P24394 ENSG00000077238 IL4R regulator target 9606 Get protein-protein interactions for a specific gene, filtering by protein or gene IDs: gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 ENSG00000111537 --or -l 5 # Python\nimport gget\ngget.opentargets( 'ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': ['ENSG00000077238', 'ENSG00000111537']}, filter_mode='or', limit=5\n) → Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 or the second gene is either ENSG00000077238 or ENSG00000111537. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000379111 ENSG00000077238 IL4R unspecified role 9606 0.961 2 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000229135 ENSG00000111537 IFNG unspecified role 9606 0.800 9 intact P35225 ENSG00000169194 IL13 unspecified role 9606 Q14627 ENSG00000123496 IL13RA2 unspecified role 9606 0.740 6 intact P35225 ENSG00000169194 IL13 unspecified role 9606 P78552 ENSG00000131724 IL13RA1 unspecified role 9606 0.400 1 intact P35225 ENSG00000169194 IL13 unspecified role 9606 Q86XT9 ENSG00000149932 TMEM219 stimulator 9606 More examples","breadcrumbs":"gget opentargets » Examples","id":"62","title":"Examples"},"63":{"body":"If you use gget opentargets in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572.","breadcrumbs":"gget opentargets » References","id":"63","title":"References"},"64":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Query RCSB Protein Data Bank (PDB) for the protein structure/metadata of a given PDB ID. Return format: Resource 'pdb' is returned in PDB format. All other resources are returned in JSON format. Positional argument pdb_id PDB ID to be queried, e.g. '7S7U'. Optional arguments -r --resource Defines type of information to be returned. One of the following: 'pdb': Returns the protein structure in PDB format (default). 'entry': Information about PDB structures at the top level of PDB structure hierarchical data organization. 'pubmed': Get PubMed annotations (data integrated from PubMed) for a given entry's primary citation. 'assembly': Information about PDB structures at the quaternary structure level. 'branched_entity': Get branched entity description (define entity ID as 'identifier'). 'nonpolymer_entity': Get non-polymer entity data (define entity ID as 'identifier'). 'polymer_entity': Get polymer entity data (define entity ID as 'identifier'). 'uniprot': Get UniProt annotations for a given macromolecular entity (define entity ID as 'identifier'). 'branched_entity_instance': Get branched entity instance description (define chain ID as 'identifier'). 'polymer_entity_instance': Get polymer entity instance (a.k.a chain) data (define chain ID as 'identifier'). 'nonpolymer_entity_instance': Get non-polymer entity instance description (define chain ID as 'identifier'). -i --identifier Can be used to define assembly, entity or chain ID (default: None). Assembly/entity IDs are numbers (e.g. 1), and chain IDs are letters (e.g. 'A'). -o --out Path to the file the results will be saved in, e.g. path/to/directory/7S7U.pdb or path/to/directory/7S7U_entry.json. Default: Standard out. Python: save=True will save the output in the current working directory.","breadcrumbs":"gget pdb » gget pdb 🔮","id":"64","title":"gget pdb 🔮"},"65":{"body":"gget pdb 7S7U -o 7S7U.pdb # Python\ngget.pdb(\"7S7U\", save=True) → Saves the structure of 7S7U in PDB format as '7S7U.pdb' in the current working directory. Find PDB crystal structures for a comparative analysis of protein structure: # Find PDB IDs associated with an Ensembl ID gget info ENSG00000130234 # Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, # you will likely find more PDB entries by BLASTing the sequence agains the PDB. # Get the amino acid sequence of a transcript from an Ensembl ID\ngget seq --translate ENSG00000130234 -o gget_seq_results.fa # BLAST an amino acid sequence to find similar structures in the PDB\ngget blast --database pdbaa gget_seq_results.fa # Get PDB files from the PDB IDs returned by gget blast for comparative analysis\ngget pdb 7DQA -o 7DQA.pdb\ngget pdb 7CT5 -o 7CT5.pdb # Find PDB IDs associated with an Ensembl ID gget.info(\"ENSG00000130234\") # Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, # you will likely find more PDB entries by BLASTing the sequence agains the PDB. # Get the amino acid sequence of a transcript from an Ensembl ID\ngget.seq(\"ENSG00000130234\", translate=True, save=True) # BLAST an amino acid sequence to find similar structures in the PDB\ngget.blast(\"gget_seq_results.fa\", database=\"pdbaa\") # Get PDB files from the PDB IDs returned by gget blast for comparative analysis\ngget.pdb(\"7DQA\", save=True)\ngget.pdb(\"7CT5\", save=True) → The use case above exemplifies how to find PDB files for comparative analysis of protein structure starting with Ensembl IDs or amino acid sequences. The fetched PDB files can also be compared to predicted structures generated by gget alphafold . PDB files can be viewed interactively in 3D online , or using programs like PyMOL or Blender . To compare two PDB files, you can use this website . More examples","breadcrumbs":"gget pdb » Examples","id":"65","title":"Examples"},"66":{"body":"If you use gget pdb in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472.","breadcrumbs":"gget pdb » References","id":"66","title":"References"},"67":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch FTPs and their respective metadata (or use flag ftp to only return the links) for reference genomes and annotations from Ensembl by species. Return format: dictionary/JSON. Positional argument species Species for which the FTPs will be fetched in the format genus_species, e.g. homo_sapiens. Supports all available vertebrate and invertebrate (plants, fungi, protists, and invertebrate metazoa) genomes from Ensembl, except bacteria. Note: Not required when using flags --list_species or --list_iv_species. Supported shortcuts: 'human', 'mouse', 'human_grch37' (accesses the GRCh37 genome assembly) Optional arguments -w --which Defines which results to return. Default: 'all' -> Returns all available results. Possible entries are one or a combination (as comma-separated list) of the following: 'gtf' - Returns the annotation (GTF). 'cdna' - Returns the trancriptome (cDNA). 'dna' - Returns the genome (DNA). 'cds' - Returns the coding sequences corresponding to Ensembl genes. (Does not contain UTR or intronic sequence.) 'cdrna' - Returns transcript sequences corresponding to non-coding RNA genes (ncRNA). 'pep' - Returns the protein translations of Ensembl genes. -r --release Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: latest Ensembl release. -od --out_dir Path to the directory where the FTPs will be saved, e.g. path/to/directory/. Default: Current working directory. -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -l --list_species Lists all available vertebrate species. (Python: combine with species=None.) -liv --list_iv_species Lists all available invertebrate species. (Python: combine with species=None.) -ftp --ftp Returns only the requested FTP links. -d --download Command-line only. Downloads the requested FTPs to the directory specified by out_dir (requires curl to be installed). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget ref » gget ref 📖","id":"67","title":"gget ref 📖"},"68":{"body":"Use gget ref in combination with kallisto | bustools to build a reference index: kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens) → kb ref builds a reference index using the latest DNA and GTF files of species Homo sapiens passed to it by gget ref. List all available genomes from Ensembl release 103: gget ref --list_species -r 103 # Python\ngget.ref(species=None, list_species=True, release=103) → Returns a list with all available genomes (checks if GTF and FASTAs are available) from Ensembl release 103. (If no release is specified, gget ref will always return information from the latest Ensembl release.) Get the genome reference for a specific species: gget ref -w gtf,dna homo_sapiens # Python\ngget.ref(\"homo_sapiens\", which=[\"gtf\", \"dna\"]) → Returns a JSON with the latest human GTF and FASTA FTPs, and their respective metadata, in the format: { \"homo_sapiens\": { \"annotation_gtf\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz\", \"ensembl_release\": 106, \"release_date\": \"28-Feb-2022\", \"release_time\": \"23:27\", \"bytes\": \"51379459\" }, \"genome_dna\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz\", \"ensembl_release\": 106, \"release_date\": \"21-Feb-2022\", \"release_time\": \"09:35\", \"bytes\": \"881211416\" } }\n} More examples","breadcrumbs":"gget ref » Examples","id":"68","title":"Examples"},"69":{"body":"If you use gget ref in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606.","breadcrumbs":"gget ref » References","id":"69","title":"References"},"7":{"body":"","breadcrumbs":"gget alphafold » Tutorials","id":"7","title":"Tutorials"},"70":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch genes and transcripts from Ensembl using free-form search terms. Results are matched based on the \"gene name\" and \"description\" sections in the Ensembl database. gget version >= 0.27.9 also includes results that match the Ensembl \"synonym\" section. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument searchwords One or more free form search words, e.g. gaba nmda. (Note: Search is not case-sensitive.) Other required arguments -s --species Species or database to be searched. A species can be passed in the format 'genus_species', e.g. 'homo_sapiens' or 'arabidopsis_thaliana'. To pass a specific database, pass the name of the CORE database, e.g. 'mus_musculus_dba2j_core_105_1'. All available core databases can be found here: Vertebrates: http://ftp.ensembl.org/pub/current/mysql/ Invertebrates: http://ftp.ensemblgenomes.org/pub/current/ + select kingdom + go to mysql/ Supported shortcuts: 'human', 'mouse' Optional arguments -r --release Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: None -> latest Ensembl release is used. Note: The release argument does not apply to invertebrate species (you can pass a specific core database (which includes a release number) to the species argument instead). For invertebrate species, Ensembl only stores databases from 10 releases prior to the current release. This argument is overwritten if a specific database (which includes a release number) is passed to the species argument. -t --id_type 'gene' (default) or 'transcript' Returns genes or transcripts, respectively. -ao --andor 'or' (default) or 'and' 'or': Returns all genes that INCLUDE AT LEAST ONE of the searchwords in their name/description. 'and': Returns only genes that INCLUDE ALL of the searchwords in their name/description. -l --limit Limits the number of search results, e.g. 10. Default: None. -o --out Path to the csv the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget search » gget search 🔎","id":"70","title":"gget search 🔎"},"71":{"body":"gget search -s human gaba gamma-aminobutyric # Python\ngget.search([\"gaba\", \"gamma-aminobutyric\"], \"homo_sapiens\") → Returns all genes that contain at least one of the search words in their name or Ensembl/external reference description: ensembl_id gene_name ensembl_description ext_ref_description biotype url ENSG00000034713 GABARAPL2 GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] GABA type A receptor associated protein like 2 protein_coding https://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713 . . . . . . . . . . . . . . . . . . More examples","breadcrumbs":"gget search » Example","id":"71","title":"Example"},"72":{"body":"If you use gget search in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606.","breadcrumbs":"gget search » References","id":"72","title":"References"},"73":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Function to install/download third-party dependencies for a specified gget module. Positional argument module gget module for which dependencies should be installed. Optional arguments -o --out Path to the folder downloaded files will be saved in (currently only applies to module = 'elm'). NOTE: Do NOT use this argument when downloading the files for use with gget.elm. Default: None (downloaded files are saved inside the gget package installation folder). Flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget setup » gget setup 🔧","id":"73","title":"gget setup 🔧"},"74":{"body":"gget setup alphafold # Python\ngget.setup(\"alphafold\") → Installs all (modified) third-party dependencies and downloads model parameters (~4GB) required to run gget alphafold .","breadcrumbs":"gget setup » Example","id":"74","title":"Example"},"75":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch nucleotide or amino acid sequence(s) of a gene (and all its isoforms) or a transcript by Ensembl ID. Return format: FASTA. Positional argument ens_ids One or more Ensembl IDs. Optional arguments -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.fa. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -t --translate Returns amino acid (instead of nucleotide) sequences. Nucleotide sequences are fetched from Ensembl . Amino acid sequences are fetched from UniProt . -iso --isoforms Returns the sequences of all known transcripts. (Only for gene IDs.) -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget seq » gget seq 🧬","id":"75","title":"gget seq 🧬"},"76":{"body":"gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.seq([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Returns the nucleotide sequences of ENSG00000034713, ENSG00000104853, and ENSG00000170296 in FASTA format. gget seq -t -iso ENSG00000034713 # Python\ngget.seq(\"ENSG00000034713\", translate=True, isoforms=True) → Returns the amino acid sequences of all known transcripts of ENSG00000034713 in FASTA format. More examples","breadcrumbs":"gget seq » Examples","id":"76","title":"Examples"},"77":{"body":"If you use gget seq in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606 The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"gget seq » References","id":"77","title":"References"},"78":{"body":"Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the gget repo . ✨ Read our Code of Conduct to keep our community approachable and respectable. In this guide you will get an overview of the contribution workflow from opening an issue or creating a pull request (PR) to reviewing and merging a PR.","breadcrumbs":"Contributing Guide » Welcome to gget's contributing guide","id":"78","title":"Welcome to gget's contributing guide"},"79":{"body":"","breadcrumbs":"Contributing Guide » Issues","id":"79","title":"Issues"},"8":{"body":"","breadcrumbs":"gget alphafold » 🔗 Google Colab tutorial","id":"8","title":"🔗 Google Colab tutorial"},"80":{"body":"If you spot a problem with gget or you have an idea for a new feature, check if an issue already exists . If a related issue doesn't exist, you can open a new issue using the relevant issue form .","breadcrumbs":"Contributing Guide » Create a new issue","id":"80","title":"Create a new issue"},"81":{"body":"Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. If you find an issue to work on, you are welcome to open a PR with a fix.","breadcrumbs":"Contributing Guide » Solve an issue","id":"81","title":"Solve an issue"},"82":{"body":"","breadcrumbs":"Contributing Guide » Contribute through pull requests","id":"82","title":"Contribute through pull requests"},"83":{"body":"Fork the repository. Using GitHub Desktop: Getting started with GitHub Desktop will guide you through setting up Desktop. Once Desktop is set up, you can use it to fork the repo ! Using the command line: Fork the repo so that you can make your changes without affecting the original project until you're ready to merge them. Create a working branch and start with your changes!","breadcrumbs":"Contributing Guide » Getting started","id":"83","title":"Getting started"},"84":{"body":"Commit the changes once you are happy with them.","breadcrumbs":"Contributing Guide » Commit your update","id":"84","title":"Commit your update"},"85":{"body":"Review the content for technical accuracy. Copy-edit the changes/comments for grammar, spelling, and adherence to the general style of existing gget code. Format your code using black . Make sure the unit tests pass: Developer dependencies can be installed with pip install -r dev-requirements.txt Run existing unit tests from the gget repository root with coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* Add new unit tests if applicable: Arguments and expected results are stored in json files in ./tests/fixtures/ Unit tests can be added to ./tests/test_*.py and will be automatically detected Make sure the edits are compatible with both the Python and the command line interface The command line interface and arguments are defined in ./gget/main.py Add new modules/arguments to the documentation if applicable: The manual for each module can be edited/added as ./docs/src/*.md If you have any questions, feel free to start a discussion or create an issue as described above.","breadcrumbs":"Contributing Guide » ‼️ Self-review the following before creating a Pull Request ‼️","id":"85","title":"‼️ Self-review the following before creating a Pull Request ‼️"},"86":{"body":"When you're finished with the changes, create a pull request , also known as a PR. ‼️ Please make all PRs against the dev branch of the gget repository. Don't forget to link PR to issue if you are solving one. Enable the checkbox to allow maintainer edits so the branch can be updated for a merge. If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues. Once you submit your PR, a gget team member will review your proposal. We may ask questions or request additional information.","breadcrumbs":"Contributing Guide » Pull Request","id":"86","title":"Pull Request"},"87":{"body":"Congratulations! 🎉 The gget team thanks you. ✨ Once your PR is merged, your contributions will be publicly visible on the gget repo .","breadcrumbs":"Contributing Guide » Your PR is merged!","id":"87","title":"Your PR is merged!"},"88":{"body":"","breadcrumbs":"Code of Conduct » Contributor Covenant Code of Conduct","id":"88","title":"Contributor Covenant Code of Conduct"},"89":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Code of Conduct » Our Pledge","id":"89","title":"Our Pledge"},"9":{"body":"","breadcrumbs":"gget alphafold » 🔗 Protein structure prediction with comparison to related crystal structures","id":"9","title":"🔗 Protein structure prediction with comparison to related crystal structures"},"90":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others' private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Code of Conduct » Our Standards","id":"90","title":"Our Standards"},"91":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Code of Conduct » Enforcement Responsibilities","id":"91","title":"Enforcement Responsibilities"},"92":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Code of Conduct » Scope","id":"92","title":"Scope"},"93":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at lpachter@caltech.edu. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Code of Conduct » Enforcement","id":"93","title":"Enforcement"},"94":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Code of Conduct » Enforcement Guidelines","id":"94","title":"Enforcement Guidelines"},"95":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Code of Conduct » 1. Correction","id":"95","title":"1. Correction"},"96":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Code of Conduct » 2. Warning","id":"96","title":"2. Warning"},"97":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Code of Conduct » 3. Temporary Ban","id":"97","title":"3. Temporary Ban"},"98":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Code of Conduct » 4. Permanent Ban","id":"98","title":"4. Permanent Ban"},"99":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla's code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations .","breadcrumbs":"Code of Conduct » Attribution","id":"99","title":"Attribution"}},"length":179,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"4":{"9":{"5":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"3":{"6":{"4":{"4":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"2":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"6":{"5":{"7":{"7":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"3":{"4":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"6":{"6":{"3":{"6":{"4":{"3":{"4":{"7":{"2":{"4":{"1":{"8":{"3":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"9":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"5":{"1":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"8":{"1":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"9":{":":{"3":{"5":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":7,"docs":{"121":{"tf":1.0},"131":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"22":{"tf":1.0},"37":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}}},"1":{"0":{",":{"1":{"0":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"1":{"0":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"1":{".":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"6":{"/":{"df":0,"docs":{},"s":{"0":{"0":{"2":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"/":{"2":{"8":{".":{"1":{".":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"c":{"1":{"0":{"4":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"8":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"0":{"4":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"1":{"0":{"1":{"5":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"3":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{".":{"2":{"2":{"9":{"2":{"0":{"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":{}},"2":{"6":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"2":{"0":{"0":{"4":{"0":{"8":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"/":{"0":{"0":{"0":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"6":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":13,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"19":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"148":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}},"4":{"df":4,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"5":{"9":{"2":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"n":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"d":{"df":0,"docs":{},"n":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"1":{"0":{"6":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"149":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"1":{".":{"2":{"1":{"9":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"4":{"5":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"2":{"5":{"0":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0}}},"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"8":{"(":{"1":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"3":{".":{"2":{"6":{"4":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"5":{"9":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":10,"docs":{"104":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},":":{"df":0,"docs":{},"g":{".":{"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"8":{"(":{"1":{")":{":":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"(":{"2":{"3":{")":{":":{"3":{"8":{"6":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.0},"95":{"tf":1.0}},"r":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":4,"docs":{"137":{"tf":2.0},"2":{"tf":1.0},"50":{"tf":2.0},"99":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"8":{"2":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"5":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":3,"docs":{"137":{"tf":1.0},"27":{"tf":2.0},"50":{"tf":1.0}}},"1":{"2":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"6":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"9":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"113":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"2":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":3.7416573867739413},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.7416573867739413},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"3":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":3.605551275463989},"103":{"tf":1.0},"104":{"tf":3.3166247903554},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}}},"4":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"133":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"45":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"1":{"0":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"1":{"0":{"2":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"2":{"3":{"1":{"7":{"1":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"8":{"8":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"0":{"2":{"1":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}},"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"37":{"tf":1.0}}},"7":{".":{"7":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"(":{"0":{"5":{")":{"8":{"0":{"3":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},";":{"4":{"7":{"(":{"df":0,"docs":{},"w":{"1":{")":{":":{"df":0,"docs":{},"w":{"1":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"2":{"6":{"9":{")":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"71":{"tf":1.4142135623730951},"96":{"tf":1.0}},"k":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{"1":{"0":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"2":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"8":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"1":{"8":{"7":{"8":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":4,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}},"1":{"0":{"6":{"9":{"3":{"7":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"1":{"df":0,"docs":{},"i":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"b":{"c":{"0":{"3":{"8":{"1":{"5":{"6":{"\"":{",":{"\"":{"c":{"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"2":{"2":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"8":{"3":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"6":{".":{"2":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"8":{"2":{"4":{"9":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"9":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"6":{"8":{"5":{"2":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"6":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}},"8":{"6":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"d":{"df":8,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"174":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":2.6457513110645907},"97":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"q":{"3":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"4":{".":{"3":{"5":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"4":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":12,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"5":{".":{"9":{"0":{"5":{"5":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"45":{"tf":1.0}}},"1":{"3":{"7":{"9":{"4":{"5":{"9":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"2":{"5":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"2":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"8":{"3":{"df":0,"docs":{},"–":{"5":{"8":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"–":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"1":{"5":{"(":{"3":{")":{":":{"4":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"(":{"d":{"1":{")":{":":{"d":{"3":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"2":{"6":{"6":{"0":{"1":{"5":{"1":{"_":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"6":{"4":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},";":{"5":{"1":{"(":{"d":{"1":{")":{":":{"d":{"1":{"3":{"5":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"3":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}},"7":{"3":{"4":{"8":{"8":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"5":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0}},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"8":{".":{"2":{"7":{"4":{"0":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"0":{".":{"c":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"2":{"1":{"1":{"4":{"1":{"6":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"121":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"g":{".":{"2":{"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"4":{"7":{"(":{"d":{"1":{")":{":":{"d":{"9":{"4":{"1":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"9":{".":{"5":{"7":{"0":{"4":{"5":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"8":{"4":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"3":{"8":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":1,"docs":{"62":{"tf":4.242640687119285}}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"b":{"c":{"a":{"1":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"c":{"a":{"a":{"1":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":6,"docs":{"104":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"s":{"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}},"s":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"173":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"39":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"177":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.7320508075688772}},"e":{"2":{"df":8,"docs":{"106":{"tf":3.0},"115":{"tf":2.0},"124":{"tf":2.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"30":{"tf":2.0},"4":{"tf":3.0},"47":{"tf":1.4142135623730951}}},"3":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}},"df":1,"docs":{"168":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"‑":{"0":{"0":{"1":{"5":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":34,"docs":{"1":{"tf":2.6457513110645907},"100":{"tf":3.605551275463989},"118":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}},"g":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"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":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"v":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":4,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951}}},"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"163":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.0}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"9":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":2.0},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"2":{"tf":2.23606797749979},"37":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"á":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"135":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"130":{"tf":1.0},"148":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"f":{"a":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"104":{"tf":2.449489742783178}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}},"r":{"1":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}}},"2":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":3.872983346207417}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}},"df":1,"docs":{"136":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"t":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"107":{"tf":2.23606797749979},"117":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"178":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":19,"docs":{"100":{"tf":1.7320508075688772},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"6":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"141":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"2":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"2":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":2.8284271247461903},"108":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"129":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.8284271247461903},"4":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"137":{"tf":2.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":2,"docs":{"142":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":17,"docs":{"1":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}},"á":{"c":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":16,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"í":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":2.23606797749979},"136":{"tf":1.0},"177":{"tf":2.23606797749979},"2":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"65":{"tf":2.0}}}},"z":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"c":{"1":{"6":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"n":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"o":{"b":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"4":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"1":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"146":{"tf":2.0}}}}}}}},"o":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"a":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"/":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"50":{"tf":2.0}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":1,"docs":{"143":{"tf":2.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":6,"docs":{"32":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"r":{";":{"1":{"2":{"(":{"4":{")":{":":{"6":{"5":{"6":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"p":{"1":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"b":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"3":{"9":{"\"":{",":{"\"":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":10,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"149":{"tf":1.0}},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"a":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":26,"docs":{"104":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"s":{"4":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":2.23606797749979},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"4":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"¿":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"12":{"tf":2.23606797749979},"15":{"tf":2.449489742783178},"18":{"tf":2.23606797749979},"2":{"tf":4.242640687119285},"21":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"32":{"tf":2.8284271247461903},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"47":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"52":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"73":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}},"o":{"df":6,"docs":{"104":{"tf":3.605551275463989},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.7320508075688772}}}}}}}}},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":1,"docs":{"16":{"tf":1.0}},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"l":{"1":{"0":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"í":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"ú":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"86":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"y":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"123":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"120":{"tf":1.0},"145":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"167":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"g":{"8":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"p":{"5":{"df":0,"docs":{},"f":{"1":{"\"":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"3":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"2":{"d":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"b":{"d":{"d":{"3":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"b":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":2.449489742783178}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"162":{"tf":1.0},"26":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"9":{"4":{"9":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"1":{"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"135":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}},"y":{"df":0,"docs":{},"u":{"d":{"a":{"df":1,"docs":{"103":{"tf":1.0}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}},"i":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":19,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"126":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":2.23606797749979},"135":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"k":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":3.605551275463989},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"149":{"tf":2.8284271247461903},"178":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"0":{"3":{"8":{"1":{"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":5.0990195135927845},"129":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"140":{"tf":1.0},"50":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"a":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"a":{"df":1,"docs":{"160":{"tf":1.0}},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":4,"docs":{"134":{"tf":2.23606797749979},"140":{"tf":1.0},"40":{"tf":2.23606797749979},"53":{"tf":1.0}}},"df":2,"docs":{"133":{"tf":1.0},"39":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"r":{"_":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"136":{"tf":1.0},"162":{"tf":1.0},"47":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":2.6457513110645907},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.7320508075688772},"6":{"tf":2.0},"65":{"tf":2.6457513110645907}},"n":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772}}},"p":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}},"t":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":1,"docs":{"16":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":2,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"126":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"ú":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"d":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{".":{"(":{"2":{"1":{"8":{"5":{"_":{"2":{"2":{"8":{"3":{")":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"8":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"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":{}},"*":{"2":{"4":{"4":{"6":{"a":{">":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"g":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}},"df":0,"docs":{}}},"9":{"_":{"1":{"3":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":2.449489742783178},"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"102":{"tf":1.0}},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.23606797749979}},"o":{"df":5,"docs":{"104":{"tf":2.23606797749979},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"127":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"df":0,"docs":{}}}},"á":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"58":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"o":{"df":1,"docs":{"146":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}}},"df":1,"docs":{"62":{"tf":1.0}},"u":{"df":1,"docs":{"16":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}}},"c":{"d":{"c":{"1":{"0":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"6":{"\"":{",":{"\"":{"9":{"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"d":{"d":{"3":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"d":{"c":{"2":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0}},"h":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"8":{"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":4.242640687119285},"105":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":4.242640687119285},"28":{"tf":2.23606797749979},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.0},"134":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"123":{"tf":4.358898943540674},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"29":{"tf":4.358898943540674},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"5":{"tf":1.0},"64":{"tf":2.449489742783178}}}},"k":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"g":{"df":7,"docs":{"0":{"tf":1.0},"2":{"tf":3.4641016151377544},"5":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"_":{"2":{"0":{"1":{"6":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"1":{"7":{"4":{"3":{"0":{"8":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"9":{"7":{"8":{"6":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"i":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":2.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"145":{"tf":1.0}},"r":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":4.358898943540674}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":4.47213595499958},"103":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"_":{"0":{"0":{"0":{"0":{"5":{"4":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"95":{"tf":1.0}}}}},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":2.8284271247461903},"40":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":1,"docs":{"103":{"tf":1.0}},"k":{"df":2,"docs":{"1":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"_":{"c":{"1":{"4":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"c":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"2":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"1":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":2.0},"40":{"tf":2.0}}}},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":11,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.7320508075688772},"166":{"tf":1.0},"47":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"104":{"tf":2.0},"123":{"tf":1.0},"143":{"tf":2.8284271247461903}}},"df":5,"docs":{"2":{"tf":2.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"126":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":4,"docs":{"2":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"67":{"tf":1.0}},"n":{"d":{"df":30,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":16,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"o":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.4641016151377544},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}},"r":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":2.0}}}}}}},"df":6,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"x":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"36":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"d":{"df":12,"docs":{"155":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"d":{"a":{"=":{"=":{"4":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"3":{"tf":1.0},"5":{"tf":2.449489742783178}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"t":{"a":{"df":10,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772}}},"df":9,"docs":{"78":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":4.47213595499958},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0}},"f":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":3,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"15":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}}}},"df":4,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"12":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":3.1622776601683795},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":1,"docs":{"103":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":3.1622776601683795},"144":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"150":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"r":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"159":{"tf":1.0}}}},"t":{"df":6,"docs":{"78":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}},"t":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":2.0},"2":{"tf":1.7320508075688772},"4":{"tf":2.0}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":3,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0}},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"91":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"13":{"tf":1.0}}},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}},"r":{"df":1,"docs":{"108":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"a":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"o":{"df":3,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"126":{"tf":3.605551275463989},"127":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"32":{"tf":3.605551275463989},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"2":{"9":{"0":{"7":{"4":{"9":{"4":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"v":{"5":{"7":{"0":{"1":{"4":{"4":{"2":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"136":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"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":{"/":{"2":{"/":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"q":{"df":2,"docs":{"176":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"99":{"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":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"176":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":1,"docs":{"148":{"tf":1.0}},"r":{"df":6,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"167":{"tf":1.0}}},"t":{"df":9,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"111":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"é":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":27,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":2.0},"21":{"tf":1.7320508075688772},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"70":{"tf":2.0}}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":26,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":4,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"c":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"p":{"2":{"c":{"1":{"8":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"z":{"df":7,"docs":{"100":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":3.1622776601683795},"127":{"tf":1.0},"128":{"tf":1.0}},"e":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0}}}}}},"d":{"1":{"3":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"4":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"9":{"7":{"df":0,"docs":{},"–":{"d":{"5":{"0":{"8":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"df":0,"docs":{},"–":{"d":{"5":{"3":{"1":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"1":{"df":0,"docs":{},"–":{"d":{"8":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"r":{"df":1,"docs":{"167":{"tf":1.0}}},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":48,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.872983346207417},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.8284271247461903},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"b":{"a":{"a":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"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":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"58":{"tf":2.6457513110645907}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":3.605551275463989},"30":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":22,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":3.4641016151377544},"124":{"tf":1.0},"126":{"tf":3.7416573867739413},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.6457513110645907},"149":{"tf":2.8284271247461903},"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"ñ":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"b":{"df":10,"docs":{"106":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"18":{"tf":1.0},"36":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":16,"docs":{"100":{"tf":5.0990195135927845},"116":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.0},"32":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"b":{"df":0,"docs":{},"e":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":2.449489742783178},"143":{"tf":1.0}},"n":{"df":3,"docs":{"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":3.605551275463989},"103":{"tf":5.656854249492381},"104":{"tf":12.922847983320086},"106":{"tf":5.291502622129181},"107":{"tf":5.291502622129181},"108":{"tf":3.7416573867739413},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":4.58257569495584},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":4.58257569495584},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":8.306623862918075},"124":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":7.615773105863909},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"130":{"tf":5.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":5.656854249492381},"134":{"tf":2.6457513110645907},"135":{"tf":5.830951894845301},"136":{"tf":4.69041575982343},"137":{"tf":4.58257569495584},"139":{"tf":4.358898943540674},"140":{"tf":1.0},"141":{"tf":3.7416573867739413},"143":{"tf":6.4031242374328485},"144":{"tf":1.0},"145":{"tf":6.0},"146":{"tf":5.196152422706632},"147":{"tf":4.242640687119285},"148":{"tf":3.1622776601683795},"149":{"tf":6.324555320336759},"150":{"tf":1.7320508075688772},"151":{"tf":2.6457513110645907},"152":{"tf":1.0},"153":{"tf":4.58257569495584},"154":{"tf":2.23606797749979},"155":{"tf":3.1622776601683795},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.8284271247461903},"168":{"tf":3.3166247903554},"169":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.449489742783178},"172":{"tf":2.449489742783178},"173":{"tf":2.23606797749979},"174":{"tf":2.8284271247461903},"175":{"tf":2.6457513110645907},"176":{"tf":2.6457513110645907},"177":{"tf":4.69041575982343},"178":{"tf":2.23606797749979},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":2.6457513110645907},"2":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"29":{"tf":4.795831523312719},"32":{"tf":3.1622776601683795},"36":{"tf":2.23606797749979},"39":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":2.8284271247461903},"5":{"tf":2.0},"50":{"tf":3.0},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":3.605551275463989},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"b":{"2":{"9":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"\"":{",":{"\"":{"a":{"c":{"a":{"a":{"1":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"1":{"\"":{",":{"\"":{"2":{"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":18,"docs":{"107":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"123":{"tf":4.795831523312719},"126":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.0},"135":{"tf":2.449489742783178},"137":{"tf":3.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"145":{"tf":2.6457513110645907}}},"df":17,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":3.605551275463989},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":3.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":3.3166247903554}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"145":{"tf":1.0}}}}}}},"g":{"_":{"a":{"df":0,"docs":{},"p":{"c":{"c":{"_":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":31,"docs":{"103":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":4.0},"126":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"á":{"df":1,"docs":{"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"2":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"104":{"tf":2.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"134":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0}},"n":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}},"u":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"162":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"d":{"df":23,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"114":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"160":{"tf":2.0},"83":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"é":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}},"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":2,"docs":{"62":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"á":{"df":1,"docs":{"136":{"tf":1.0}}}}},"v":{"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"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":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"í":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"142":{"tf":1.0}}}},"v":{"df":5,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951}}}}}}}},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"1":{":":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"b":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"40":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"167":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"134":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":3,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0},"75":{"tf":1.0}},"o":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"172":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":2.449489742783178}},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"j":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"m":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"n":{"a":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":7,"docs":{"120":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"*":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}}}},"i":{":":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"s":{"4":{"1":{"4":{"6":{"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":3.872983346207417},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.872983346207417},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"134":{"tf":1.7320508075688772},"2":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"t":{"df":4,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"c":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"32":{"tf":3.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"40":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"=":{"2":{"0":{"0":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"1":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.3166247903554},"61":{"tf":3.4641016151377544},"64":{"tf":2.0},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"v":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":2,"docs":{"104":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"df":4,"docs":{"162":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"d":{"/":{"a":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":4.242640687119285},"18":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"_":{"0":{"0":{"0":{"0":{"2":{"7":{"4":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"_":{"2":{"0":{"1":{"5":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":2.449489742783178},"127":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"33":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178}},"e":{"c":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"152":{"tf":1.0}},"s":{"df":1,"docs":{"106":{"tf":2.449489742783178}}}}},"df":2,"docs":{"133":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":26,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}}},"l":{"df":54,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":6.244997998398398},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.605551275463989},"126":{"tf":3.872983346207417},"127":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":3.605551275463989},"139":{"tf":2.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.8284271247461903},"144":{"tf":1.0},"145":{"tf":3.872983346207417},"146":{"tf":2.6457513110645907},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":2,"docs":{"130":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}},"m":{"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"133":{"tf":3.0},"134":{"tf":3.3166247903554},"177":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":3.1622776601683795},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"0":{"0":{"0":{"0":{"9":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"í":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"140":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":2.0},"158":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979}}}}}}}},"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}},"o":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":60,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":4.58257569495584},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.6457513110645907},"113":{"tf":1.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":3.605551275463989},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":3.605551275463989},"139":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.3166247903554},"144":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":3.3166247903554},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":2.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":2.23606797749979},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"136":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":2.0},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":2.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"120":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"5":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":45,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"114":{"tf":2.0},"12":{"tf":2.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"177":{"tf":2.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"c":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"8":{"0":{"2":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"154":{"tf":2.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"3":{"8":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"3":{"1":{"7":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"5":{"3":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"4":{"3":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"5":{"3":{"7":{"df":1,"docs":{"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"9":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":2.0},"146":{"tf":1.4142135623730951},"4":{"tf":2.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"2":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"8":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"9":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"1":{"9":{"4":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":5.291502622129181}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"9":{"6":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"8":{"9":{"5":{"df":2,"docs":{"135":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"5":{"4":{"0":{"5":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"1":{"6":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"0":{"0":{"2":{"2":{"9":{"1":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"4":{"9":{"1":{"5":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"3":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"1":{"1":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"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":{}},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":2,"docs":{"15":{"tf":1.0},"16":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"7":{"2":{"4":{"3":{".":{"7":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"4":{"4":{"1":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"2":{"5":{"1":{"9":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"1":{"9":{"1":{"4":{"df":1,"docs":{"59":{"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":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"2":{"5":{"6":{"6":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"126":{"tf":1.0},"32":{"tf":1.0},"64":{"tf":3.4641016151377544}}},"y":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"p":{"d":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"d":{"a":{"df":6,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.0}},"i":{"df":4,"docs":{"145":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"104":{"tf":1.0},"131":{"tf":1.0}}}},"df":1,"docs":{"148":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}}}},"í":{"df":1,"docs":{"163":{"tf":1.0}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":3.1622776601683795},"143":{"tf":1.0},"167":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"108":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"173":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"103":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":22,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":2,"docs":{"137":{"tf":1.0},"148":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"í":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"e":{"c":{"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"z":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":15,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"á":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"163":{"tf":1.0}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":20,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":3.3166247903554},"148":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"126":{"tf":2.0},"32":{"tf":1.7320508075688772},"61":{"tf":1.0}}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"o":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"107":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":30,"docs":{"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"h":{"5":{"a":{"d":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"d":{"a":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"í":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"166":{"tf":1.0}}}}},"s":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"12":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":2.8284271247461903},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":3,"docs":{"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"f":{"1":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}},"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"136":{"tf":1.0},"32":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":13,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0}},"o":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"q":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":24,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"68":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"c":{"df":1,"docs":{"61":{"tf":1.0}}},"d":{"df":2,"docs":{"26":{"tf":1.0},"61":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0}}}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"15":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"55":{"tf":1.0}}}},"f":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"g":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"26":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":30,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":3.605551275463989},"59":{"tf":3.1622776601683795},"6":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"=":{"'":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":10,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":3.872983346207417},"62":{"tf":1.4142135623730951},"81":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"2":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"d":{"df":12,"docs":{"104":{"tf":1.0},"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"101":{"tf":1.0}}},"x":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":2.8284271247461903},"81":{"tf":1.0}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"g":{"df":26,"docs":{"12":{"tf":2.23606797749979},"126":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"46":{"tf":2.6457513110645907},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"3":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":2.0},"50":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}}},"y":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":1,"docs":{"61":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}},"m":{"a":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0}},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":2.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":1,"docs":{"162":{"tf":1.0}}},"o":{"df":24,"docs":{"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.0},"154":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"40":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"137":{"tf":1.0},"176":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}},"p":{"df":8,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"2":{"tf":2.0},"4":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.0}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":5,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"164":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"163":{"tf":1.7320508075688772}}}}}}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"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":{}},"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"a":{"(":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"53":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"c":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"1":{"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"f":{"2":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":8,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"1":{"tf":1.0},"12":{"tf":1.0}}},"(":{"df":1,"docs":{"4":{"tf":1.0}}},"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.23606797749979}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":2.449489742783178},"100":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.6457513110645907},"106":{"tf":2.0},"114":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":3.605551275463989},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.8284271247461903},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"29":{"tf":2.449489742783178},"30":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"46":{"tf":3.7416573867739413},"47":{"tf":3.7416573867739413},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":4.898979485566356},"67":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.4142135623730951}},"r":{"a":{"d":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}},"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"137":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"62":{"tf":1.0}}},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"→":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":1,"docs":{"16":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"67":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"$":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"'":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":1,"docs":{"16":{"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":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"146":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":1.0},"142":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}},"s":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"6":{"9":{"1":{"9":{"4":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"k":{"4":{"2":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"3":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"7":{"c":{"df":0,"docs":{},"t":{"5":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{"df":2,"docs":{"146":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"148":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"a":{"df":2,"docs":{"150":{"tf":1.0},"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":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":1.0},"146":{"tf":1.0},"4":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"133":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"“":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":136,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":4.795831523312719},"10":{"tf":1.0},"100":{"tf":4.58257569495584},"101":{"tf":1.0},"102":{"tf":2.449489742783178},"103":{"tf":4.795831523312719},"104":{"tf":8.660254037844387},"105":{"tf":1.7320508075688772},"106":{"tf":4.795831523312719},"107":{"tf":2.6457513110645907},"108":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.8284271247461903},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"137":{"tf":2.449489742783178},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":4.58257569495584},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":9.273618495495704},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":3.1622776601683795},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"4":{"tf":4.69041575982343},"40":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":2.6457513110645907},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":3.1622776601683795},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":4.242640687119285},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"t":{"df":2,"docs":{"163":{"tf":1.0},"86":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"6":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"155":{"tf":1.7320508075688772},"160":{"tf":2.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":5,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"o":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"l":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"2":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"df":3,"docs":{"147":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"_":{"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":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}},"f":{",":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"p":{"3":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"d":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"á":{"df":0,"docs":{},"n":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":3,"docs":{"4":{"tf":1.0},"78":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"í":{"a":{"df":4,"docs":{"106":{"tf":1.0},"155":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"2":{"0":{"1":{"9":{"df":2,"docs":{"135":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"166":{"tf":1.0}}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"h":{"5":{"a":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"g":{"a":{"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"y":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"b":{"b":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":53,"docs":{"100":{"tf":3.1622776601683795},"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":40,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"g":{"3":{"8":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"b":{"c":{"df":0,"docs":{},"h":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"t":{"b":{"4":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"d":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"h":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"t":{"df":3,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":2.0},"123":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.4142135623730951},"4":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"p":{"_":{"0":{"0":{"0":{"0":{"9":{"6":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"t":{".":{"3":{"5":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"3":{"1":{"7":{"6":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"4":{"1":{"5":{"8":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"t":{"a":{"c":{"8":{"3":{"6":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"a":{"7":{"9":{"3":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"9":{"7":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"0":{"5":{"2":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"2":{"0":{"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"/":{"1":{"4":{"7":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"1":{"0":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"/":{"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"150":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":2.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"49":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"124":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"o":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.449489742783178},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"g":{"c":{"df":2,"docs":{"126":{"tf":2.0},"32":{"tf":2.0}}},"df":0,"docs":{}}},"d":{"(":{"df":2,"docs":{"123":{"tf":3.3166247903554},"29":{"tf":3.4641016151377544}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":3.4641016151377544},"146":{"tf":3.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"2":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":3.1622776601683795},"62":{"tf":2.449489742783178},"64":{"tf":3.4641016151377544},"65":{"tf":3.3166247903554},"75":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"157":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"145":{"tf":2.8284271247461903},"58":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903}}}},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"l":{"1":{"3":{"df":1,"docs":{"62":{"tf":3.0}},"r":{"a":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":2.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":3.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"167":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":14,"docs":{"101":{"tf":1.0},"2":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.0},"139":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"s":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":5,"docs":{"107":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.4142135623730951},"173":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0}}}},"df":2,"docs":{"149":{"tf":1.7320508075688772},"169":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"x":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"143":{"tf":1.0}}}},"df":4,"docs":{"58":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":3.4641016151377544},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"148":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":35,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":2.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}},"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":3.4641016151377544},"59":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}}},"r":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0}}}},"df":1,"docs":{"152":{"tf":1.0}},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}}},"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}},"l":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":5,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":3,"docs":{"104":{"tf":1.0},"145":{"tf":1.7320508075688772},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.8284271247461903},"62":{"tf":3.0},"65":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":2,"docs":{"107":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"166":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"ú":{"a":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"19":{"tf":1.0},"81":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"2":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"‑":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"é":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":2.0}}}}}}},"r":{"a":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"a":{"1":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"8":{"\"":{",":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"142":{"tf":1.0},"153":{"tf":1.0}}},"df":3,"docs":{"153":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"104":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.7320508075688772},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":14,"docs":{"100":{"tf":5.477225575051661},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":5.477225575051661},"20":{"tf":1.0},"28":{"tf":2.8284271247461903},"45":{"tf":1.0},"54":{"tf":2.6457513110645907},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":2.0},"77":{"tf":2.0}},"e":{"df":8,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"28":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"ú":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"g":{"df":8,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"9":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"162":{"tf":1.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"u":{"b":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"k":{"=":{"3":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":14,"docs":{"100":{"tf":3.4641016151377544},"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"177":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"_":{"2":{"0":{"1":{"5":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"136":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"_":{"2":{"0":{"2":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}}},"h":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"y":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"25":{"tf":2.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"101":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ä":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"l":{"a":{"(":{"df":1,"docs":{"153":{"tf":1.0}}},"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":6,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":6,"docs":{"136":{"tf":1.4142135623730951},"158":{"tf":1.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"81":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":54,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":3.1622776601683795},"104":{"tf":7.3484692283495345},"106":{"tf":3.3166247903554},"107":{"tf":3.7416573867739413},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":2.8284271247461903},"118":{"tf":1.7320508075688772},"120":{"tf":2.6457513110645907},"123":{"tf":3.3166247903554},"124":{"tf":1.0},"126":{"tf":4.358898943540674},"128":{"tf":1.4142135623730951},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"133":{"tf":3.605551275463989},"134":{"tf":2.449489742783178},"135":{"tf":3.872983346207417},"136":{"tf":2.8284271247461903},"137":{"tf":3.1622776601683795},"139":{"tf":3.3166247903554},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":6.324555320336759},"145":{"tf":3.872983346207417},"146":{"tf":3.3166247903554},"147":{"tf":4.123105625617661},"148":{"tf":2.0},"149":{"tf":4.47213595499958},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.23606797749979},"178":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"p":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"c":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"df":39,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":4.47213595499958},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"j":{"df":3,"docs":{"137":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"64":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"166":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"z":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0}}},"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"0":{"0":{"6":{"6":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"1":{"4":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":30,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":13,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":4.58257569495584},"130":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":4.795831523312719},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":17,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"c":{"1":{"0":{"0":{"0":{"4":{"7":{"2":{"1":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"2":{"\"":{",":{"\"":{"2":{"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"a":{"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"9":{"8":{"1":{"5":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"5":{"4":{"3":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"3":{"1":{"1":{"7":{"2":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"4":{"5":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.0},"177":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.0}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0990195135927845},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":3.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":2.8284271247461903},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":3.1622776601683795},"141":{"tf":1.7320508075688772},"143":{"tf":3.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":3.3166247903554},"148":{"tf":2.0},"149":{"tf":3.1622776601683795},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.7320508075688772}},"g":{"1":{"0":{"(":{"0":{".":{"0":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"170":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"u":{"c":{"df":0,"docs":{},"í":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"\"":{",":{"\"":{"2":{"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"'":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"a":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"107":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}},"n":{"df":1,"docs":{"59":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":22,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":2,"docs":{"155":{"tf":1.0},"162":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"p":{"3":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"c":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"h":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":3,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"k":{"df":3,"docs":{"46":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"2":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"z":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":4,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}}},"y":{";":{"2":{"(":{"5":{")":{":":{"4":{"0":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"’":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}},"d":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"100":{"tf":5.656854249492381},"137":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":5.656854249492381},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.4641016151377544},"58":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":2.0},"69":{"tf":2.6457513110645907},"72":{"tf":2.6457513110645907},"77":{"tf":2.6457513110645907},"85":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"62":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"92":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"167":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}},"g":{"df":6,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":6,"docs":{"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"a":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"e":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"s":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"l":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"l":{"2":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"m":{"3":{"9":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.4142135623730951},"177":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"74":{"tf":1.0}},"o":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"126":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":2,"docs":{"126":{"tf":1.0},"170":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"140":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":2.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":31,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":9,"docs":{"100":{"tf":2.0},"107":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"2":{"0":{"2":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.23606797749979},"142":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.0},"142":{"tf":1.4142135623730951},"4":{"tf":2.0},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"134":{"tf":1.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":3.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"5":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951}},"s":{"_":{"d":{"b":{"a":{"2":{"df":0,"docs":{},"j":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"1":{"0":{"5":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}},"e":{"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"q":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.0},"143":{"tf":2.449489742783178}}}},"ó":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":3.1622776601683795},"144":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"143":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"58":{"tf":3.1622776601683795}}}},"r":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"t":{"df":18,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.7320508075688772},"177":{"tf":1.0},"2":{"tf":3.1622776601683795},"27":{"tf":3.1622776601683795},"32":{"tf":4.242640687119285},"33":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":6.6332495807108},"59":{"tf":4.123105625617661},"60":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"y":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"v":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"49":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"à":{"df":3,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0}}},"á":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"ú":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}}}}},"n":{".":{"d":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":19,"docs":{"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"\"":{",":{"\"":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"5":{"6":{"\"":{",":{"\"":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"50":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"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":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":2.0},"2":{"tf":1.4142135623730951},"52":{"tf":2.0}}}},"df":1,"docs":{"26":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{"4":{"9":{"9":{"1":{"9":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":2.0},"35":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"4":{"tf":2.449489742783178}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":4.58257569495584},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"f":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"r":{"df":0,"docs":{},"x":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":10,"docs":{"104":{"tf":2.8284271247461903},"114":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":7,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":21,"docs":{"123":{"tf":4.47213595499958},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"29":{"tf":4.47213595499958},"32":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"‑":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"3":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":15,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"h":{"df":1,"docs":{"2":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":2.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"2":{"tf":4.242640687119285}}}},"r":{"d":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"49":{"tf":1.0}}},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"100":{"tf":3.605551275463989},"129":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"35":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"1":{"tf":2.23606797749979},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":9,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"x":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":5,"docs":{"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0}}}}}},"v":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":4.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":2.0}},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"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":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":6,"docs":{"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"123":{"tf":1.0}},"g":{"a":{"df":9,"docs":{"106":{"tf":2.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{";":{"2":{"(":{"1":{"0":{")":{":":{"9":{"6":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":78,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"114":{"tf":3.0},"117":{"tf":3.1622776601683795},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":3.1622776601683795},"123":{"tf":5.196152422706632},"124":{"tf":1.4142135623730951},"126":{"tf":2.8284271247461903},"130":{"tf":3.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"141":{"tf":2.6457513110645907},"142":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":2.0},"149":{"tf":3.3166247903554},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":9,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":16,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.0},"123":{"tf":2.6457513110645907},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"í":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"137":{"tf":2.8284271247461903},"50":{"tf":2.6457513110645907}}}},"df":12,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"=":{"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"63":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":23,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":2.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":3.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":3,"docs":{"160":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":4,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"1":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"í":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"r":{"a":{"df":20,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":7,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":43,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"2":{"4":{"3":{"9":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"3":{"5":{"2":{"2":{"5":{"df":1,"docs":{"62":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"5":{"2":{"0":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"5":{"5":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"103":{"tf":1.0},"137":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":{}}}},"r":{"a":{"df":46,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":6.324555320336759},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":4.0},"120":{"tf":3.3166247903554},"121":{"tf":1.0},"123":{"tf":3.0},"126":{"tf":4.358898943540674},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"133":{"tf":3.0},"135":{"tf":4.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":3.7416573867739413},"141":{"tf":2.8284271247461903},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":1.4142135623730951},"149":{"tf":3.7416573867739413},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.6457513110645907},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0},"32":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"r":{"df":4,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":22,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":2.449489742783178},"114":{"tf":2.449489742783178},"117":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"123":{"tf":2.449489742783178},"126":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":2.6457513110645907},"136":{"tf":1.4142135623730951},"137":{"tf":2.6457513110645907},"139":{"tf":2.449489742783178},"141":{"tf":2.449489742783178},"143":{"tf":2.6457513110645907},"145":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"149":{"tf":2.6457513110645907},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"162":{"tf":1.4142135623730951}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":1,"docs":{"149":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":9,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"36":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}}},"y":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"u":{"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":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}},"d":{"b":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"a":{"df":6,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"18":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":3.3166247903554},"139":{"tf":2.0},"145":{"tf":3.3166247903554},"146":{"tf":4.795831523312719},"177":{"tf":1.0},"2":{"tf":2.23606797749979},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":3.3166247903554},"64":{"tf":3.3166247903554},"65":{"tf":4.795831523312719},"66":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"d":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":32,"docs":{"100":{"tf":3.1622776601683795},"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"153":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"28":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"t":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"l":{"df":1,"docs":{"167":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"f":{"1":{"4":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"2":{"1":{"a":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"p":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"ž":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}},"p":{"df":8,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"b":{"d":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":4.47213595499958},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"5":{"tf":1.0}}}}}},"df":11,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"m":{"c":{"1":{"0":{"2":{"4":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"0":{"0":{"8":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"7":{"8":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"5":{"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"5":{"6":{"0":{"3":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"6":{"0":{"3":{"0":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"2":{"3":{"9":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"2":{"4":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"2":{"5":{"5":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}},"i":{"d":{"df":14,"docs":{"100":{"tf":3.4641016151377544},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.4641016151377544},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"100":{"tf":3.605551275463989},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.605551275463989},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"c":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"í":{"a":{"df":2,"docs":{"139":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"145":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":0,"docs":{},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"145":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"í":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":39,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":4.898979485566356},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"178":{"tf":1.4142135623730951}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"167":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"m":{"1":{"b":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"136":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0}}}}}},"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951}},"h":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"123":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}},"o":{"df":4,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"d":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.4142135623730951}}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"107":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":7,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":16,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"s":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"26":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":33,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":4.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"⇄":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":12,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":11,"docs":{"101":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"é":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"126":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"b":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"169":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"m":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":26,"docs":{"104":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":7,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"3":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":89,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":3.0},"136":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":3.1622776601683795},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.0},"18":{"tf":2.6457513110645907},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":2.23606797749979},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.6457513110645907},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"5":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":3.1622776601683795},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"ú":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{"6":{"2":{"7":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"3":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"4":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"8":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":41,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":3.7416573867739413},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0}},"j":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"t":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"120":{"tf":1.0}}}}},"z":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"b":{"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":{"167":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"u":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"m":{"1":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}},"s":{"b":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":33,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":4.242640687119285},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"29":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"135":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"i":{"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"u":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"23":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":3.0},"177":{"tf":1.0},"2":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.8284271247461903},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"4":{"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":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"148":{"tf":1.7320508075688772}},"r":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"2":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"58":{"tf":1.0}},"g":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":12,"docs":{"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":3.7416573867739413},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"df":4,"docs":{"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"2":{"tf":1.0}}}},"df":3,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"34":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.8284271247461903}},"e":{"=":{"1":{"0":{"3":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.7320508075688772},"91":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"107":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"162":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":4,"docs":{"155":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"15":{"tf":1.0},"2":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":2.23606797749979},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.23606797749979},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":3.4641016151377544},"64":{"tf":1.7320508075688772}},"e":{"=":{"'":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"59":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":2.0},"93":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":24,"docs":{"104":{"tf":3.0},"107":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":3.1622776601683795},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":3.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":28,"docs":{"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"75":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":42,"docs":{"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":2.0},"61":{"tf":2.23606797749979},"62":{"tf":3.3166247903554},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":3.3166247903554},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.0}},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}},"h":{"a":{"b":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{},"f":{"4":{"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"o":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"l":{"d":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":3.872983346207417}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"w":{"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"2":{"9":{"5":{"6":{"8":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"103":{"tf":1.0}}}},"n":{"df":10,"docs":{"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":2.0},"52":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"a":{"/":{"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":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"2":{"8":{"8":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"c":{"3":{"d":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"6":{"2":{"3":{"4":{"5":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"h":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"32":{"tf":3.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}},"n":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":29,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":25,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"b":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"100":{"tf":5.744562646538029},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.1622776601683795},"63":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"104":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"104":{"tf":3.0},"106":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"2":{"2":{"c":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"a":{"(":{"df":3,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0}}},"df":22,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"106":{"tf":3.0},"107":{"tf":2.0},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.47213595499958},"144":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":40,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"104":{"tf":5.385164807134504},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"126":{"tf":3.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":3.4641016151377544},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":11,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"99":{"tf":1.0}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":2.6457513110645907},"177":{"tf":1.0},"36":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.8284271247461903},"70":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"q":{"0":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772}}},"1":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{"]":{"_":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":2.0},"58":{"tf":2.0}}},"df":0,"docs":{}}},"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.449489742783178},"4":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":30,"docs":{"1":{"tf":2.8284271247461903},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"18":{"tf":2.6457513110645907},"19":{"tf":2.0},"2":{"tf":3.605551275463989},"21":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":2.8284271247461903},"40":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":7.0},"59":{"tf":3.605551275463989},"6":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"58":{"tf":1.0},"75":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":19,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"i":{"df":2,"docs":{"174":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"df":4,"docs":{"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{"df":11,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":3.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"89":{"tf":1.0}},"o":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ñ":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"f":{"df":6,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"x":{"df":0,"docs":{},"n":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":34,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":1,"docs":{"62":{"tf":1.0}}},"u":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"108":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"n":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"h":{"a":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907}}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"i":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"a":{"1":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"a":{"6":{"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"s":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"2":{"b":{"\"":{",":{"\"":{"4":{"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"8":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"129":{"tf":1.0},"177":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{":":{"0":{"0":{"0":{"2":{"0":{"7":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"133":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":4,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"k":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":21,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"d":{"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":17,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"=":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"df":9,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"59":{"tf":1.0},"62":{"tf":2.8284271247461903},"68":{"tf":1.0},"70":{"tf":1.7320508075688772}},"i":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.8284271247461903},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":2.0}},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":7,"docs":{"160":{"tf":1.0},"4":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"t":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":7,"docs":{"100":{"tf":1.0},"120":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"137":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"'":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"130":{"tf":2.449489742783178},"133":{"tf":2.0},"137":{"tf":2.23606797749979},"29":{"tf":4.58257569495584},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":3.0},"32":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"b":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}},"df":24,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"2":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{";":{"a":{"c":{"c":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{":":{"1":{"3":{"2":{"9":{"1":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"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":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":2.0}}}}}}},"z":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"‐":{"df":0,"docs":{},"s":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"é":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"í":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"n":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}},"t":{"2":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}},"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":1.0}}},"df":1,"docs":{"12":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"é":{"df":0,"docs":{},"n":{"df":14,"docs":{"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"df":0,"docs":{}},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"d":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":4.123105625617661},"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.4142135623730951},"177":{"tf":4.123105625617661},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"164":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"123":{"tf":2.0},"126":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":6,"docs":{"123":{"tf":2.23606797749979},"29":{"tf":2.23606797749979},"32":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":2.23606797749979},"120":{"tf":2.23606797749979},"123":{"tf":2.0},"126":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"40":{"tf":1.0},"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":3.4641016151377544},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":5,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":3.3166247903554},"139":{"tf":1.0},"149":{"tf":1.0}}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"i":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}}}}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"n":{"df":2,"docs":{"157":{"tf":1.0},"162":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":19,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.6457513110645907},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.0},"32":{"tf":1.4142135623730951},"4":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"2":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"c":{"1":{"\"":{",":{"\"":{"c":{"d":{"df":0,"docs":{},"h":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"2":{"1":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"66":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"d":{"a":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"114":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"170":{"tf":1.0}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"á":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":2.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"118":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"b":{"a":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"177":{"tf":1.0}},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"139":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"4":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"%":{"2":{"0":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"é":{"df":6,"docs":{"136":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":39,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"g":{"a":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"32":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"163":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"o":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"55":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"é":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":4,"docs":{"126":{"tf":1.0},"149":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"0":{"0":{"0":{"0":{"1":{"7":{"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"0":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"1":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"o":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"166":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"39":{"tf":1.0},"52":{"tf":1.0}},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":48,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.8284271247461903},"104":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":37,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":2.8284271247461903},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.0},"104":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"139":{"tf":2.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":2.6457513110645907},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":10,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}},"q":{"df":1,"docs":{"136":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":3.872983346207417}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"107":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":2,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"104":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":2.0},"153":{"tf":1.4142135623730951}},"n":{"d":{"df":0,"docs":{},"o":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"r":{"df":8,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":79,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":4.58257569495584},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.4142135623730951},"39":{"tf":3.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":3.1622776601683795},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":3.3166247903554},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"o":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":4.242640687119285},"178":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"df":1,"docs":{"115":{"tf":1.0}}},"r":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"2":{".":{"3":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"6":{"0":{"0":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"i":{"d":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.449489742783178},"61":{"tf":3.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979}}}},"u":{"df":10,"docs":{"117":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":2.23606797749979},"61":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"141":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":2,"docs":{"142":{"tf":1.0},"144":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":18,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0}},"i":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":6.082762530298219},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"70":{"tf":1.0},"99":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":6.0},"106":{"tf":1.0},"107":{"tf":2.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":9,"docs":{"106":{"tf":2.449489742783178},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"i":{"a":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"108":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{".":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"í":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"1":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.449489742783178},"116":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.449489742783178},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"y":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"1":{"1":{"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"h":{"1":{"\"":{",":{"\"":{"1":{"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.449489742783178},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{":":{"df":0,"docs":{},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"136":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":2,"docs":{"104":{"tf":1.0},"157":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":4.58257569495584},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"177":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"l":{"a":{"b":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"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":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"t":{"b":{"4":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"\"":{",":{"\"":{"4":{"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"f":{"3":{"0":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"4":{"9":{"5":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"3":{"6":{"4":{"4":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"2":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"6":{"5":{"7":{"7":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"3":{"4":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"6":{"6":{"3":{"6":{"4":{"3":{"4":{"7":{"2":{"4":{"1":{"8":{"3":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"9":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"5":{"1":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"8":{"1":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"9":{":":{"3":{"5":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":7,"docs":{"121":{"tf":1.0},"131":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"22":{"tf":1.0},"37":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}}},"1":{"0":{",":{"1":{"0":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"1":{"0":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"1":{".":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"6":{"/":{"df":0,"docs":{},"s":{"0":{"0":{"2":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"/":{"2":{"8":{".":{"1":{".":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"c":{"1":{"0":{"4":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"8":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"0":{"4":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"1":{"0":{"1":{"5":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"3":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{".":{"2":{"2":{"9":{"2":{"0":{"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":{}},"2":{"6":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"2":{"0":{"0":{"4":{"0":{"8":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"/":{"0":{"0":{"0":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"6":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":13,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"19":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"148":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}},"4":{"df":4,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"5":{"9":{"2":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"n":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"d":{"df":0,"docs":{},"n":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"1":{"0":{"6":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"149":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"1":{".":{"2":{"1":{"9":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"4":{"5":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"2":{"5":{"0":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0}}},"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"8":{"(":{"1":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"3":{".":{"2":{"6":{"4":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"5":{"9":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":10,"docs":{"104":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},":":{"df":0,"docs":{},"g":{".":{"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"8":{"(":{"1":{")":{":":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"(":{"2":{"3":{")":{":":{"3":{"8":{"6":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.0},"95":{"tf":1.4142135623730951}},"r":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":4,"docs":{"137":{"tf":2.0},"2":{"tf":1.0},"50":{"tf":2.0},"99":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"8":{"2":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"5":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":3,"docs":{"137":{"tf":1.0},"27":{"tf":2.0},"50":{"tf":1.0}}},"1":{"2":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"6":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"9":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"113":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"2":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":3.7416573867739413},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.7416573867739413},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"3":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":3.605551275463989},"103":{"tf":1.0},"104":{"tf":3.3166247903554},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}}},"4":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"133":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"45":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"1":{"0":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"1":{"0":{"2":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"2":{"3":{"1":{"7":{"1":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"8":{"8":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"0":{"2":{"1":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}},"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"37":{"tf":1.0}}},"7":{".":{"7":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"(":{"0":{"5":{")":{"8":{"0":{"3":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},";":{"4":{"7":{"(":{"df":0,"docs":{},"w":{"1":{")":{":":{"df":0,"docs":{},"w":{"1":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"2":{"6":{"9":{")":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"71":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"k":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{"1":{"0":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"2":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"8":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"1":{"8":{"7":{"8":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":4,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}},"1":{"0":{"6":{"9":{"3":{"7":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"1":{"df":0,"docs":{},"i":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"b":{"c":{"0":{"3":{"8":{"1":{"5":{"6":{"\"":{",":{"\"":{"c":{"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"2":{"2":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"8":{"3":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"6":{".":{"2":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"8":{"2":{"4":{"9":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"9":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"6":{"8":{"5":{"2":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"6":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}},"8":{"6":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"d":{"df":8,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"174":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"q":{"3":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"4":{".":{"3":{"5":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"4":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":12,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":1.4142135623730951}},"g":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"5":{".":{"9":{"0":{"5":{"5":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"45":{"tf":1.0}}},"1":{"3":{"7":{"9":{"4":{"5":{"9":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"2":{"5":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"2":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"8":{"3":{"df":0,"docs":{},"–":{"5":{"8":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"–":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"1":{"5":{"(":{"3":{")":{":":{"4":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"(":{"d":{"1":{")":{":":{"d":{"3":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"2":{"6":{"6":{"0":{"1":{"5":{"1":{"_":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"6":{"4":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},";":{"5":{"1":{"(":{"d":{"1":{")":{":":{"d":{"1":{"3":{"5":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"3":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}},"7":{"3":{"4":{"8":{"8":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"5":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0}},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"8":{".":{"2":{"7":{"4":{"0":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"0":{".":{"c":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"2":{"1":{"1":{"4":{"1":{"6":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"121":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"g":{".":{"2":{"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"4":{"7":{"(":{"d":{"1":{")":{":":{"d":{"9":{"4":{"1":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"9":{".":{"5":{"7":{"0":{"4":{"5":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"8":{"4":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"3":{"8":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":1,"docs":{"62":{"tf":4.242640687119285}}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"b":{"c":{"a":{"1":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"c":{"a":{"a":{"1":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":6,"docs":{"104":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"s":{"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}},"s":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"173":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"39":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"177":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.7320508075688772}},"e":{"2":{"df":8,"docs":{"106":{"tf":3.0},"115":{"tf":2.0},"124":{"tf":2.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"30":{"tf":2.0},"4":{"tf":3.0},"47":{"tf":1.4142135623730951}}},"3":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}},"df":1,"docs":{"168":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"‑":{"0":{"0":{"1":{"5":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":34,"docs":{"1":{"tf":2.6457513110645907},"100":{"tf":3.605551275463989},"118":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}},"g":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"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":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"v":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":4,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951}}},"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"163":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.0}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"9":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":2.0},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"2":{"tf":2.23606797749979},"37":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"á":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"135":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"130":{"tf":1.0},"148":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"f":{"a":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"104":{"tf":2.449489742783178}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}},"r":{"1":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}}},"2":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":3.872983346207417}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}},"df":1,"docs":{"136":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"t":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"107":{"tf":2.23606797749979},"117":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"178":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":19,"docs":{"100":{"tf":1.7320508075688772},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"6":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"141":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"2":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"2":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":25,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":3.1622776601683795},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"129":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.8284271247461903},"4":{"tf":1.4142135623730951},"5":{"tf":3.1622776601683795},"6":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"137":{"tf":2.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":2,"docs":{"142":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":17,"docs":{"1":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}},"á":{"c":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":16,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"í":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":2.23606797749979},"136":{"tf":1.0},"177":{"tf":2.23606797749979},"2":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"65":{"tf":2.0}}}},"z":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"c":{"1":{"6":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"n":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"o":{"b":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"4":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"1":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"146":{"tf":2.0}}}}}}}},"o":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"a":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"/":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"50":{"tf":2.0}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":1,"docs":{"143":{"tf":2.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":6,"docs":{"32":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"r":{";":{"1":{"2":{"(":{"4":{")":{":":{"6":{"5":{"6":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"p":{"1":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"b":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"3":{"9":{"\"":{",":{"\"":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":10,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"149":{"tf":1.0}},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"a":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":26,"docs":{"104":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"s":{"4":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"4":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"¿":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"12":{"tf":2.23606797749979},"15":{"tf":2.449489742783178},"18":{"tf":2.23606797749979},"2":{"tf":4.242640687119285},"21":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"32":{"tf":2.8284271247461903},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"47":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"52":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"73":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}},"o":{"df":6,"docs":{"104":{"tf":3.605551275463989},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.7320508075688772}}}}}}}}},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":1,"docs":{"16":{"tf":1.0}},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"l":{"1":{"0":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"í":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"ú":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"86":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"y":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"123":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"120":{"tf":1.0},"145":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"167":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"g":{"8":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"p":{"5":{"df":0,"docs":{},"f":{"1":{"\"":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"3":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"2":{"d":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"b":{"d":{"d":{"3":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"b":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":2.449489742783178}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"9":{"4":{"9":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"1":{"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"135":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}},"y":{"df":0,"docs":{},"u":{"d":{"a":{"df":1,"docs":{"103":{"tf":1.0}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}},"i":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":19,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"126":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":2.23606797749979},"135":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772}},"k":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":3.605551275463989},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"149":{"tf":2.8284271247461903},"178":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"70":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"0":{"3":{"8":{"1":{"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":5.0990195135927845},"129":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"140":{"tf":1.0},"50":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"a":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"a":{"df":1,"docs":{"160":{"tf":1.0}},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":4,"docs":{"134":{"tf":2.23606797749979},"140":{"tf":1.0},"40":{"tf":2.23606797749979},"53":{"tf":1.0}}},"df":2,"docs":{"133":{"tf":1.0},"39":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"r":{"_":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"136":{"tf":1.0},"162":{"tf":1.0},"47":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.8284271247461903},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"18":{"tf":2.449489742783178},"19":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.7320508075688772},"6":{"tf":2.0},"65":{"tf":2.6457513110645907}},"n":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772}}},"p":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}},"t":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":1,"docs":{"16":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":2,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"126":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"ú":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"d":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{".":{"(":{"2":{"1":{"8":{"5":{"_":{"2":{"2":{"8":{"3":{")":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"8":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"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":{}},"*":{"2":{"4":{"4":{"6":{"a":{">":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"g":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}},"df":0,"docs":{}}},"9":{"_":{"1":{"3":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":2.449489742783178},"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"102":{"tf":1.0}},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.23606797749979}},"o":{"df":5,"docs":{"104":{"tf":2.23606797749979},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"127":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"df":0,"docs":{}}}},"á":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"58":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"o":{"df":1,"docs":{"146":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}}},"df":1,"docs":{"62":{"tf":1.0}},"u":{"df":1,"docs":{"16":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}}},"c":{"d":{"c":{"1":{"0":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"6":{"\"":{",":{"\"":{"9":{"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"d":{"d":{"3":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"d":{"c":{"2":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0}},"h":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"8":{"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":4.242640687119285},"105":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":4.242640687119285},"28":{"tf":2.23606797749979},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.0},"134":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"29":{"tf":4.58257569495584},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"5":{"tf":1.0},"64":{"tf":2.449489742783178}}}},"k":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"g":{"df":7,"docs":{"0":{"tf":1.0},"2":{"tf":3.4641016151377544},"5":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"_":{"2":{"0":{"1":{"6":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"1":{"7":{"4":{"3":{"0":{"8":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"9":{"7":{"8":{"6":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"i":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":2.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"145":{"tf":1.0}},"r":{"df":10,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"177":{"tf":4.58257569495584},"178":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":4.47213595499958},"103":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"_":{"0":{"0":{"0":{"0":{"5":{"4":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"95":{"tf":1.0}}}}},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":2.8284271247461903},"40":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":1,"docs":{"103":{"tf":1.0}},"k":{"df":2,"docs":{"1":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"_":{"c":{"1":{"4":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"c":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"2":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"1":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":2.0},"40":{"tf":2.0}}}},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"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}}}},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":11,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.7320508075688772},"166":{"tf":1.0},"47":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"104":{"tf":2.0},"123":{"tf":1.0},"143":{"tf":2.8284271247461903}}},"df":5,"docs":{"2":{"tf":2.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"126":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":4,"docs":{"2":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"67":{"tf":1.0}},"n":{"d":{"df":30,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"84":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":16,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"o":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.4641016151377544},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"136":{"tf":1.0},"146":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}},"r":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":2.0}}}}}}},"df":6,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"x":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"36":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"d":{"df":12,"docs":{"155":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"d":{"a":{"=":{"=":{"4":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"3":{"tf":1.0},"5":{"tf":2.449489742783178}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"t":{"a":{"df":10,"docs":{"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772}}},"df":13,"docs":{"78":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":12,"docs":{"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}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":4.47213595499958},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0}},"f":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":2,"docs":{"161":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":3,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"15":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}}}},"df":4,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"12":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":3.1622776601683795},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":1,"docs":{"103":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":3.1622776601683795},"144":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"150":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"r":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":10,"docs":{"155":{"tf":2.23606797749979},"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}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"159":{"tf":1.4142135623730951}}}},"t":{"df":13,"docs":{"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}},"t":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":2.0},"2":{"tf":1.7320508075688772},"4":{"tf":2.0}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":3,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0}},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"91":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"13":{"tf":1.0}}},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}},"r":{"df":1,"docs":{"108":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"a":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"o":{"df":3,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"126":{"tf":3.872983346207417},"127":{"tf":1.4142135623730951},"128":{"tf":2.449489742783178},"129":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"32":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"2":{"9":{"0":{"7":{"4":{"9":{"4":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"v":{"5":{"7":{"0":{"1":{"4":{"4":{"2":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"136":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"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":{"/":{"2":{"/":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"q":{"df":2,"docs":{"176":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"99":{"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":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"176":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":1,"docs":{"148":{"tf":1.0}},"r":{"df":6,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"t":{"df":9,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"é":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":27,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":2.0},"21":{"tf":1.7320508075688772},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"70":{"tf":2.0}}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":26,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":4,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"c":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"p":{"2":{"c":{"1":{"8":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"z":{"df":7,"docs":{"100":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":3.1622776601683795},"127":{"tf":1.0},"128":{"tf":1.0}},"e":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}}}}},"d":{"1":{"3":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"4":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"9":{"7":{"df":0,"docs":{},"–":{"d":{"5":{"0":{"8":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"df":0,"docs":{},"–":{"d":{"5":{"3":{"1":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"1":{"df":0,"docs":{},"–":{"d":{"8":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"r":{"df":1,"docs":{"167":{"tf":1.0}}},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":48,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.872983346207417},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.8284271247461903},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"b":{"a":{"a":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"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":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"58":{"tf":2.6457513110645907}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":3.605551275463989},"30":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":22,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":3.4641016151377544},"124":{"tf":1.0},"126":{"tf":3.7416573867739413},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.6457513110645907},"149":{"tf":2.8284271247461903},"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"ñ":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"b":{"df":10,"docs":{"106":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"18":{"tf":1.0},"36":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":16,"docs":{"100":{"tf":5.0990195135927845},"116":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.0},"32":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"b":{"df":0,"docs":{},"e":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":2.449489742783178},"143":{"tf":1.0}},"n":{"df":3,"docs":{"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":3.605551275463989},"103":{"tf":5.656854249492381},"104":{"tf":12.922847983320086},"106":{"tf":5.477225575051661},"107":{"tf":5.291502622129181},"108":{"tf":3.7416573867739413},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":4.58257569495584},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":4.58257569495584},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":8.306623862918075},"124":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":7.615773105863909},"128":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":5.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":5.656854249492381},"134":{"tf":2.6457513110645907},"135":{"tf":5.830951894845301},"136":{"tf":4.69041575982343},"137":{"tf":4.58257569495584},"139":{"tf":4.358898943540674},"140":{"tf":1.0},"141":{"tf":3.7416573867739413},"143":{"tf":6.4031242374328485},"144":{"tf":1.0},"145":{"tf":6.0},"146":{"tf":5.196152422706632},"147":{"tf":4.242640687119285},"148":{"tf":3.1622776601683795},"149":{"tf":6.324555320336759},"150":{"tf":1.7320508075688772},"151":{"tf":2.6457513110645907},"152":{"tf":1.0},"153":{"tf":4.58257569495584},"154":{"tf":2.23606797749979},"155":{"tf":3.605551275463989},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":2.449489742783178},"161":{"tf":1.0},"162":{"tf":3.1622776601683795},"163":{"tf":2.23606797749979},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":3.0},"168":{"tf":3.605551275463989},"169":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"170":{"tf":2.8284271247461903},"171":{"tf":2.8284271247461903},"172":{"tf":2.6457513110645907},"173":{"tf":2.449489742783178},"174":{"tf":3.0},"175":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"177":{"tf":4.69041575982343},"178":{"tf":2.449489742783178},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":2.6457513110645907},"2":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"29":{"tf":4.795831523312719},"32":{"tf":3.1622776601683795},"36":{"tf":2.23606797749979},"39":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":2.8284271247461903},"5":{"tf":2.0},"50":{"tf":3.0},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":3.605551275463989},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"b":{"2":{"9":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"\"":{",":{"\"":{"a":{"c":{"a":{"a":{"1":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"1":{"\"":{",":{"\"":{"2":{"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":18,"docs":{"107":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"123":{"tf":4.795831523312719},"126":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.0},"135":{"tf":2.449489742783178},"137":{"tf":3.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"145":{"tf":2.6457513110645907}}},"df":17,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":3.605551275463989},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":3.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":3.3166247903554}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"145":{"tf":1.0}}}}}}},"g":{"_":{"a":{"df":0,"docs":{},"p":{"c":{"c":{"_":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":31,"docs":{"103":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":4.0},"126":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"á":{"df":1,"docs":{"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"2":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"104":{"tf":2.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"134":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0}},"n":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"162":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"d":{"df":23,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"114":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"160":{"tf":2.0},"83":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"é":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}},"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":2,"docs":{"62":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"á":{"df":1,"docs":{"136":{"tf":1.0}}}}},"v":{"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"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":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"í":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"142":{"tf":1.0}}}},"v":{"df":5,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951}}}}}}}},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"1":{":":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"b":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.0},"130":{"tf":3.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"36":{"tf":2.8284271247461903},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"40":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"167":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"134":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":3,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0},"75":{"tf":1.0}},"o":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"172":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":2.449489742783178}},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"j":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"m":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"n":{"a":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":7,"docs":{"120":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"*":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}}}},"i":{":":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"s":{"4":{"1":{"4":{"6":{"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":3.872983346207417},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.872983346207417},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"134":{"tf":1.7320508075688772},"2":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"t":{"df":4,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"c":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"32":{"tf":3.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"40":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"=":{"2":{"0":{"0":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"1":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.3166247903554},"61":{"tf":3.4641016151377544},"64":{"tf":2.0},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"v":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":2,"docs":{"104":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"df":4,"docs":{"162":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"d":{"/":{"a":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":4.242640687119285},"18":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"_":{"0":{"0":{"0":{"0":{"2":{"7":{"4":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"_":{"2":{"0":{"1":{"5":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":2.449489742783178},"127":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"33":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178}},"e":{"c":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"152":{"tf":1.0}},"s":{"df":1,"docs":{"106":{"tf":2.449489742783178}}}}},"df":2,"docs":{"133":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":26,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":2.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.449489742783178},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}}},"l":{"df":54,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":6.244997998398398},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.605551275463989},"126":{"tf":3.872983346207417},"127":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":3.605551275463989},"139":{"tf":2.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.8284271247461903},"144":{"tf":1.0},"145":{"tf":3.872983346207417},"146":{"tf":2.6457513110645907},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":2,"docs":{"130":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}},"m":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"133":{"tf":3.3166247903554},"134":{"tf":3.4641016151377544},"177":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"39":{"tf":2.8284271247461903},"4":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"73":{"tf":1.0}},"e":{"0":{"0":{"0":{"0":{"9":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"í":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"140":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":2.0},"158":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979}}}}}}}},"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}},"o":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":60,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":4.58257569495584},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.6457513110645907},"113":{"tf":1.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":3.605551275463989},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":3.605551275463989},"139":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.3166247903554},"144":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":3.3166247903554},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":2.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":2.23606797749979},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"136":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":2.0},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":2.6457513110645907},"177":{"tf":2.0},"2":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"120":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"5":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":45,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"114":{"tf":2.0},"12":{"tf":2.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"177":{"tf":2.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"c":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"8":{"0":{"2":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"154":{"tf":2.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"3":{"8":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"3":{"1":{"7":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"5":{"3":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"4":{"3":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"5":{"3":{"7":{"df":1,"docs":{"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"9":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":2.0},"146":{"tf":1.4142135623730951},"4":{"tf":2.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"2":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"8":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"9":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"1":{"9":{"4":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":5.291502622129181}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"9":{"6":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"8":{"9":{"5":{"df":2,"docs":{"135":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"5":{"4":{"0":{"5":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"1":{"6":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"0":{"0":{"2":{"2":{"9":{"1":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"4":{"9":{"1":{"5":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"3":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"1":{"1":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"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":{}},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":2,"docs":{"15":{"tf":1.0},"16":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"7":{"2":{"4":{"3":{".":{"7":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"4":{"4":{"1":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"2":{"5":{"1":{"9":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"1":{"9":{"1":{"4":{"df":1,"docs":{"59":{"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":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"2":{"5":{"6":{"6":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"126":{"tf":1.0},"32":{"tf":1.0},"64":{"tf":3.4641016151377544}}},"y":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"p":{"d":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"d":{"a":{"df":6,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.0}},"i":{"df":4,"docs":{"145":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"104":{"tf":1.0},"131":{"tf":1.0}}}},"df":1,"docs":{"148":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}}}},"í":{"df":1,"docs":{"163":{"tf":1.0}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":3.1622776601683795},"143":{"tf":1.0},"167":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"108":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"173":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"103":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":22,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":2,"docs":{"137":{"tf":1.0},"148":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"í":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"e":{"c":{"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"z":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":15,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"111":{"tf":2.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"á":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"163":{"tf":1.0}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":20,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":3.3166247903554},"148":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"126":{"tf":2.0},"32":{"tf":1.7320508075688772},"61":{"tf":1.0}}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"o":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"107":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":30,"docs":{"13":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"22":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"h":{"5":{"a":{"d":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"d":{"a":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"í":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"166":{"tf":1.0}}}}},"s":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"12":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":2.8284271247461903},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":3,"docs":{"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"f":{"1":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}},"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"136":{"tf":1.0},"32":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":13,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0}},"o":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"q":{"df":7,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":24,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"68":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"c":{"df":1,"docs":{"61":{"tf":1.0}}},"d":{"df":2,"docs":{"26":{"tf":1.0},"61":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0}}}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"15":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"55":{"tf":1.0}}}},"f":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"g":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"26":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":30,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":3.605551275463989},"59":{"tf":3.1622776601683795},"6":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"=":{"'":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":10,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":3.872983346207417},"62":{"tf":1.4142135623730951},"81":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"2":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"d":{"df":12,"docs":{"104":{"tf":1.0},"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"101":{"tf":1.0}}},"x":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":2.8284271247461903},"81":{"tf":1.0}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"g":{"df":26,"docs":{"12":{"tf":2.23606797749979},"126":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"46":{"tf":2.6457513110645907},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"3":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":2.0},"50":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}}},"y":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":1,"docs":{"61":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}},"m":{"a":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0}},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":2.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":1,"docs":{"162":{"tf":1.0}}},"o":{"df":24,"docs":{"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.0},"154":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"40":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"137":{"tf":1.0},"176":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}},"p":{"df":8,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"2":{"tf":2.0},"4":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.0}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":5,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"164":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"163":{"tf":1.7320508075688772}}}}}}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"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":{}},"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"a":{"(":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"53":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"c":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"1":{"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"f":{"2":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":8,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"1":{"tf":1.0},"12":{"tf":1.0}}},"(":{"df":1,"docs":{"4":{"tf":1.0}}},"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.23606797749979}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":2.449489742783178},"100":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.6457513110645907},"106":{"tf":2.0},"114":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":3.605551275463989},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.8284271247461903},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"29":{"tf":2.449489742783178},"30":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"46":{"tf":3.7416573867739413},"47":{"tf":3.7416573867739413},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":4.898979485566356},"67":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.4142135623730951}},"r":{"a":{"d":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}},"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"137":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"62":{"tf":1.0}}},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"→":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":1,"docs":{"16":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"67":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"$":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"'":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}},".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":1,"docs":{"16":{"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":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"146":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":1.0},"142":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}},"s":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"6":{"9":{"1":{"9":{"4":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"k":{"4":{"2":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"3":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"7":{"c":{"df":0,"docs":{},"t":{"5":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{"df":2,"docs":{"146":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"148":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"a":{"df":2,"docs":{"150":{"tf":1.0},"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":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":1.0},"146":{"tf":1.0},"4":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"133":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"“":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":146,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":4.898979485566356},"10":{"tf":1.7320508075688772},"100":{"tf":4.58257569495584},"101":{"tf":1.0},"102":{"tf":2.449489742783178},"103":{"tf":4.898979485566356},"104":{"tf":8.660254037844387},"105":{"tf":1.7320508075688772},"106":{"tf":4.795831523312719},"107":{"tf":3.0},"108":{"tf":3.3166247903554},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"12":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"13":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":3.1622776601683795},"134":{"tf":2.23606797749979},"135":{"tf":2.0},"136":{"tf":3.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":3.1622776601683795},"147":{"tf":2.0},"148":{"tf":2.8284271247461903},"149":{"tf":2.23606797749979},"15":{"tf":2.6457513110645907},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"177":{"tf":4.58257569495584},"178":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":2.0},"2":{"tf":9.273618495495704},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"4":{"tf":4.69041575982343},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":3.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":3.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"6":{"tf":3.3166247903554},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":4.358898943540674},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"t":{"df":2,"docs":{"163":{"tf":1.0},"86":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"6":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"155":{"tf":1.7320508075688772},"160":{"tf":2.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":5,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"o":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"l":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":2.8284271247461903},"138":{"tf":2.0},"2":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"51":{"tf":2.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"2":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"df":3,"docs":{"147":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"_":{"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":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}},"f":{",":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"p":{"3":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"d":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"á":{"df":0,"docs":{},"n":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":11,"docs":{"4":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"94":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"í":{"a":{"df":13,"docs":{"106":{"tf":1.7320508075688772},"155":{"tf":2.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},"171":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"2":{"0":{"1":{"9":{"df":2,"docs":{"135":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"166":{"tf":1.0}}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"h":{"5":{"a":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"g":{"a":{"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"y":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"b":{"b":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":53,"docs":{"100":{"tf":3.1622776601683795},"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":40,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"g":{"3":{"8":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"b":{"c":{"df":0,"docs":{},"h":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"t":{"b":{"4":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"d":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"h":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"t":{"df":3,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":2.0},"123":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.4142135623730951},"4":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"p":{"_":{"0":{"0":{"0":{"0":{"9":{"6":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"t":{".":{"3":{"5":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"3":{"1":{"7":{"6":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"4":{"1":{"5":{"8":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"t":{"a":{"c":{"8":{"3":{"6":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"a":{"7":{"9":{"3":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"9":{"7":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"0":{"5":{"2":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"2":{"0":{"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"/":{"1":{"4":{"7":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"1":{"0":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"/":{"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"150":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":2.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"49":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"124":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"o":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.449489742783178},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"g":{"c":{"df":2,"docs":{"126":{"tf":2.0},"32":{"tf":2.0}}},"df":0,"docs":{}}},"d":{"(":{"df":2,"docs":{"123":{"tf":3.3166247903554},"29":{"tf":3.4641016151377544}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":3.4641016151377544},"146":{"tf":3.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"2":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":3.1622776601683795},"62":{"tf":2.449489742783178},"64":{"tf":3.4641016151377544},"65":{"tf":3.3166247903554},"75":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"157":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"145":{"tf":2.8284271247461903},"58":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903}}}},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"l":{"1":{"3":{"df":1,"docs":{"62":{"tf":3.0}},"r":{"a":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":2.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":3.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"167":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":14,"docs":{"101":{"tf":1.0},"2":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.0},"139":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"s":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":5,"docs":{"107":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.4142135623730951},"173":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0}}}},"df":2,"docs":{"149":{"tf":1.7320508075688772},"169":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"x":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"143":{"tf":1.0}}}},"df":4,"docs":{"58":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":3.4641016151377544},"4":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"148":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":35,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":2.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}},"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":3.4641016151377544},"59":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}}},"r":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0}}}},"df":1,"docs":{"152":{"tf":1.0}},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}}},"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}},"l":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":5,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":3,"docs":{"104":{"tf":1.0},"145":{"tf":1.7320508075688772},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.8284271247461903},"62":{"tf":3.0},"65":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":2,"docs":{"107":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"166":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"ú":{"a":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"19":{"tf":1.0},"81":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"2":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"‑":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"é":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":2.0}}}}}}},"r":{"a":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"a":{"1":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"8":{"\"":{",":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"142":{"tf":1.0},"153":{"tf":1.0}}},"df":3,"docs":{"153":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"104":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":2.23606797749979},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.7320508075688772},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":14,"docs":{"100":{"tf":5.477225575051661},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":5.477225575051661},"20":{"tf":1.0},"28":{"tf":2.8284271247461903},"45":{"tf":1.0},"54":{"tf":2.6457513110645907},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":2.0},"77":{"tf":2.0}},"e":{"df":8,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"28":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"ú":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"g":{"df":8,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"9":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"162":{"tf":1.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"u":{"b":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"k":{"=":{"3":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":14,"docs":{"100":{"tf":3.4641016151377544},"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"177":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"_":{"2":{"0":{"1":{"5":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"136":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"_":{"2":{"0":{"2":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}}},"h":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"y":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"25":{"tf":2.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"101":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ä":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"l":{"a":{"(":{"df":1,"docs":{"153":{"tf":1.0}}},"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":6,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":6,"docs":{"136":{"tf":1.4142135623730951},"158":{"tf":1.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"81":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":54,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":3.1622776601683795},"104":{"tf":7.3484692283495345},"106":{"tf":3.3166247903554},"107":{"tf":3.7416573867739413},"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":2.8284271247461903},"118":{"tf":1.7320508075688772},"120":{"tf":2.6457513110645907},"123":{"tf":3.3166247903554},"124":{"tf":1.0},"126":{"tf":4.358898943540674},"128":{"tf":1.4142135623730951},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"133":{"tf":3.605551275463989},"134":{"tf":2.449489742783178},"135":{"tf":3.872983346207417},"136":{"tf":2.8284271247461903},"137":{"tf":3.1622776601683795},"139":{"tf":3.3166247903554},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":6.324555320336759},"145":{"tf":3.872983346207417},"146":{"tf":3.3166247903554},"147":{"tf":4.123105625617661},"148":{"tf":2.0},"149":{"tf":4.47213595499958},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.23606797749979},"178":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"p":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"c":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"df":39,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":4.47213595499958},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"j":{"df":3,"docs":{"137":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"64":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"166":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"z":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0}}},"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"0":{"0":{"6":{"6":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"1":{"4":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":30,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":13,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":4.58257569495584},"130":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":4.795831523312719},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":17,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"c":{"1":{"0":{"0":{"0":{"4":{"7":{"2":{"1":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"2":{"\"":{",":{"\"":{"2":{"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"a":{"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"9":{"8":{"1":{"5":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"5":{"4":{"3":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"3":{"1":{"1":{"7":{"2":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"4":{"5":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.0},"177":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.0}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.291502622129181},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":3.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":2.8284271247461903},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":3.1622776601683795},"141":{"tf":1.7320508075688772},"143":{"tf":3.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":3.3166247903554},"148":{"tf":2.0},"149":{"tf":3.1622776601683795},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.7320508075688772}},"g":{"1":{"0":{"(":{"0":{".":{"0":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"170":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"u":{"c":{"df":0,"docs":{},"í":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"\"":{",":{"\"":{"2":{"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"'":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"a":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"107":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}},"n":{"df":1,"docs":{"59":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":22,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":2,"docs":{"155":{"tf":1.0},"162":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"p":{"3":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"c":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"h":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":3,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"k":{"df":3,"docs":{"46":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"2":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"z":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":4,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}}},"y":{";":{"2":{"(":{"5":{")":{":":{"4":{"0":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"’":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}},"d":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"100":{"tf":5.656854249492381},"137":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":5.656854249492381},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.4641016151377544},"58":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":2.0},"69":{"tf":2.6457513110645907},"72":{"tf":2.6457513110645907},"77":{"tf":2.6457513110645907},"85":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"62":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"92":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"167":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}},"g":{"df":6,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":6,"docs":{"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"a":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"e":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"s":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"l":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"l":{"2":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"m":{"3":{"9":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.4142135623730951},"177":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"74":{"tf":1.0}},"o":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"126":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":2,"docs":{"126":{"tf":1.0},"170":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"140":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":2.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":31,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.8284271247461903},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":9,"docs":{"100":{"tf":2.0},"107":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"2":{"0":{"2":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.23606797749979},"142":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.0},"142":{"tf":1.4142135623730951},"4":{"tf":2.0},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"134":{"tf":1.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":3.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"5":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951}},"s":{"_":{"d":{"b":{"a":{"2":{"df":0,"docs":{},"j":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"1":{"0":{"5":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}},"e":{"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"q":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.0},"143":{"tf":2.449489742783178}}}},"ó":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":3.1622776601683795},"144":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"143":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"58":{"tf":3.1622776601683795}}}},"r":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"t":{"df":18,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":3.3166247903554},"144":{"tf":2.0},"177":{"tf":1.0},"2":{"tf":3.1622776601683795},"27":{"tf":3.1622776601683795},"32":{"tf":4.242640687119285},"33":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":6.782329983125268},"59":{"tf":4.242640687119285},"60":{"tf":1.4142135623730951},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"y":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"v":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"49":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"à":{"df":3,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0}}},"á":{"df":18,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":3.7416573867739413},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"ú":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}}}}},"n":{".":{"d":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":19,"docs":{"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"\"":{",":{"\"":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"5":{"6":{"\"":{",":{"\"":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"50":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"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":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":2.0},"2":{"tf":1.4142135623730951},"52":{"tf":2.0}}}},"df":1,"docs":{"26":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{"4":{"9":{"9":{"1":{"9":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":2.0},"35":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"4":{"tf":2.449489742783178}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":4.795831523312719},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"80":{"tf":2.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"f":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"r":{"df":0,"docs":{},"x":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":10,"docs":{"104":{"tf":2.8284271247461903},"114":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":7,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":21,"docs":{"123":{"tf":4.47213595499958},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"29":{"tf":4.47213595499958},"32":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"‑":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"3":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":15,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"h":{"df":1,"docs":{"2":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":2.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"2":{"tf":4.242640687119285}}}},"r":{"d":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"49":{"tf":1.0}}},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"100":{"tf":3.605551275463989},"129":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"35":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"1":{"tf":2.23606797749979},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":9,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"x":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":5,"docs":{"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}}}}},"v":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":4.0},"137":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":2.0}},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"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":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":6,"docs":{"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"123":{"tf":1.0}},"g":{"a":{"df":9,"docs":{"106":{"tf":2.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{";":{"2":{"(":{"1":{"0":{")":{":":{"9":{"6":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":78,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"114":{"tf":3.0},"117":{"tf":3.1622776601683795},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":3.1622776601683795},"123":{"tf":5.196152422706632},"124":{"tf":1.4142135623730951},"126":{"tf":2.8284271247461903},"130":{"tf":3.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"141":{"tf":2.6457513110645907},"142":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":2.0},"149":{"tf":3.3166247903554},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":9,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":16,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.0},"123":{"tf":2.6457513110645907},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"í":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"137":{"tf":2.8284271247461903},"50":{"tf":2.6457513110645907}}}},"df":12,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"=":{"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":23,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":2.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":3.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":3,"docs":{"160":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":4,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"1":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"í":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"r":{"a":{"df":20,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":7,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":43,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"2":{"4":{"3":{"9":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"3":{"5":{"2":{"2":{"5":{"df":1,"docs":{"62":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"5":{"2":{"0":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"5":{"5":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"103":{"tf":1.0},"137":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":{}}}},"r":{"a":{"df":46,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":6.324555320336759},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":4.0},"120":{"tf":3.3166247903554},"121":{"tf":1.0},"123":{"tf":3.0},"126":{"tf":4.358898943540674},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"133":{"tf":3.0},"135":{"tf":4.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":3.7416573867739413},"141":{"tf":2.8284271247461903},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":1.4142135623730951},"149":{"tf":3.7416573867739413},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.6457513110645907},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0},"32":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"r":{"df":4,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":22,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":2.449489742783178},"114":{"tf":2.449489742783178},"117":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"123":{"tf":2.449489742783178},"126":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":2.6457513110645907},"136":{"tf":1.4142135623730951},"137":{"tf":2.6457513110645907},"139":{"tf":2.449489742783178},"141":{"tf":2.449489742783178},"143":{"tf":2.6457513110645907},"145":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"149":{"tf":2.6457513110645907},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"162":{"tf":1.4142135623730951}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":1,"docs":{"149":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":9,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"36":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}}},"y":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"u":{"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":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}},"d":{"b":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"a":{"df":6,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"18":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":3.3166247903554},"139":{"tf":2.0},"145":{"tf":3.605551275463989},"146":{"tf":4.898979485566356},"177":{"tf":1.0},"2":{"tf":2.23606797749979},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":3.3166247903554},"64":{"tf":3.605551275463989},"65":{"tf":4.898979485566356},"66":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"d":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":32,"docs":{"100":{"tf":3.1622776601683795},"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"153":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"28":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"t":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"l":{"df":1,"docs":{"167":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"f":{"1":{"4":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"2":{"1":{"a":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"p":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"ž":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}},"p":{"df":8,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"b":{"d":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":4.47213595499958},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"5":{"tf":1.0}}}}}},"df":11,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"m":{"c":{"1":{"0":{"2":{"4":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"0":{"0":{"8":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"7":{"8":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"5":{"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"5":{"6":{"0":{"3":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"6":{"0":{"3":{"0":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"2":{"3":{"9":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"2":{"4":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"2":{"5":{"5":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}},"i":{"d":{"df":14,"docs":{"100":{"tf":3.4641016151377544},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.4641016151377544},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"100":{"tf":3.605551275463989},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.605551275463989},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"c":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"í":{"a":{"df":2,"docs":{"139":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"145":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":0,"docs":{},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"145":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"í":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":39,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":4.898979485566356},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"178":{"tf":1.4142135623730951}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"167":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"m":{"1":{"b":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"136":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951}},"h":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"123":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}},"o":{"df":4,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"d":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.4142135623730951}}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"107":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":7,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":16,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"s":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"26":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":33,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":4.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"⇄":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":12,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":11,"docs":{"101":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"é":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"126":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"b":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"169":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"m":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":26,"docs":{"104":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":7,"docs":{"155":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"3":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":89,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":3.0},"136":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":3.1622776601683795},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.0},"18":{"tf":2.6457513110645907},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":2.23606797749979},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.6457513110645907},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"5":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":3.1622776601683795},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"ú":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{"6":{"2":{"7":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"3":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"4":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"8":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":41,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":3.7416573867739413},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0}},"j":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"t":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"120":{"tf":1.0}}}}},"z":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"b":{"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":{"167":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"u":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"m":{"1":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}},"s":{"b":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":33,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":4.242640687119285},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"29":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"135":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"i":{"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"u":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"23":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":3.1622776601683795},"177":{"tf":1.0},"2":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":3.0},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"177":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"4":{"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":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"148":{"tf":1.7320508075688772}},"r":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"2":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"58":{"tf":1.0}},"g":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":12,"docs":{"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":3.7416573867739413},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"df":4,"docs":{"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"2":{"tf":1.0}}}},"df":3,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"34":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.8284271247461903}},"e":{"=":{"1":{"0":{"3":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.7320508075688772},"91":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"107":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"162":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":4,"docs":{"155":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"2":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"15":{"tf":1.0},"2":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":2.23606797749979},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.23606797749979},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":3.4641016151377544},"64":{"tf":1.7320508075688772}},"e":{"=":{"'":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"59":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"93":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":24,"docs":{"104":{"tf":3.0},"107":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":3.1622776601683795},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":3.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":28,"docs":{"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"75":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":42,"docs":{"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":2.0},"61":{"tf":2.23606797749979},"62":{"tf":3.3166247903554},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":3.3166247903554},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}},"h":{"a":{"b":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{},"f":{"4":{"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"o":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"l":{"d":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":3.872983346207417}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"w":{"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"2":{"9":{"5":{"6":{"8":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"103":{"tf":1.0}}}},"n":{"df":10,"docs":{"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":2.0},"52":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"a":{"/":{"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":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"s":{"2":{"8":{"8":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"c":{"3":{"d":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"6":{"2":{"3":{"4":{"5":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"h":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"32":{"tf":3.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}},"n":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":29,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":25,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"b":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"100":{"tf":5.744562646538029},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.1622776601683795},"63":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"104":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"104":{"tf":3.0},"106":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"2":{"2":{"c":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"a":{"(":{"df":3,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0}}},"df":22,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"106":{"tf":3.0},"107":{"tf":2.0},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.47213595499958},"144":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":40,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"104":{"tf":5.385164807134504},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"126":{"tf":3.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":3.4641016151377544},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":11,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"99":{"tf":1.0}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":2.6457513110645907},"177":{"tf":1.0},"36":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.8284271247461903},"70":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"q":{"0":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772}}},"1":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{"]":{"_":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":2.0},"58":{"tf":2.0}}},"df":0,"docs":{}}},"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":2.449489742783178},"4":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":30,"docs":{"1":{"tf":2.8284271247461903},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"18":{"tf":2.6457513110645907},"19":{"tf":2.0},"2":{"tf":3.605551275463989},"21":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":2.8284271247461903},"40":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":7.0},"59":{"tf":3.605551275463989},"6":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"58":{"tf":1.0},"75":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":19,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"i":{"df":2,"docs":{"174":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"df":4,"docs":{"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{"df":11,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":3.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"89":{"tf":1.0}},"o":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ñ":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"f":{"df":6,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"x":{"df":0,"docs":{},"n":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":34,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":1,"docs":{"62":{"tf":1.0}}},"u":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"108":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"n":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"h":{"a":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907}}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"i":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"a":{"1":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"a":{"6":{"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"s":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"2":{"b":{"\"":{",":{"\"":{"4":{"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"8":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"129":{"tf":1.0},"177":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{":":{"0":{"0":{"0":{"2":{"0":{"7":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"133":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":4,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"k":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":21,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"d":{"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":17,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"=":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"df":9,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"59":{"tf":1.0},"62":{"tf":2.8284271247461903},"68":{"tf":1.0},"70":{"tf":1.7320508075688772}},"i":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.8284271247461903},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":2.0}},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":7,"docs":{"160":{"tf":1.0},"4":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}},"t":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":7,"docs":{"100":{"tf":1.0},"120":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"137":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"'":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"130":{"tf":2.449489742783178},"133":{"tf":2.0},"137":{"tf":2.23606797749979},"29":{"tf":4.58257569495584},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"9":{"tf":2.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":3.0},"32":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"b":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}},"df":24,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"2":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{";":{"a":{"c":{"c":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{":":{"1":{"3":{"2":{"9":{"1":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"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":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":2.0}}}}}}},"z":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"‐":{"df":0,"docs":{},"s":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"é":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"í":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"n":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}},"t":{"2":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}},"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":1.0}}},"df":1,"docs":{"12":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"é":{"df":0,"docs":{},"n":{"df":14,"docs":{"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"df":0,"docs":{}},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"d":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":4.123105625617661},"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.4142135623730951},"177":{"tf":4.123105625617661},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"164":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"123":{"tf":2.0},"126":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":6,"docs":{"123":{"tf":2.23606797749979},"29":{"tf":2.23606797749979},"32":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":2.23606797749979},"120":{"tf":2.23606797749979},"123":{"tf":2.0},"126":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"40":{"tf":1.0},"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":3.4641016151377544},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":5,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":3.3166247903554},"139":{"tf":1.0},"149":{"tf":1.0}}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"i":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"n":{"df":2,"docs":{"157":{"tf":1.0},"162":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":19,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.6457513110645907},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.0},"32":{"tf":1.4142135623730951},"4":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"2":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"c":{"1":{"\"":{",":{"\"":{"c":{"d":{"df":0,"docs":{},"h":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"2":{"1":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"66":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"d":{"a":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"114":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"170":{"tf":1.0}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"á":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":2.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"118":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"b":{"a":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"177":{"tf":1.0}},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"139":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"4":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"%":{"2":{"0":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"é":{"df":6,"docs":{"136":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":39,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"g":{"a":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"32":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"163":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"o":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"55":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"é":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":4,"docs":{"126":{"tf":1.0},"149":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"0":{"0":{"0":{"0":{"1":{"7":{"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"0":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"1":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"o":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"166":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"39":{"tf":1.0},"52":{"tf":1.0}},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":48,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.8284271247461903},"104":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":37,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":2.8284271247461903},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":2.449489742783178},"158":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.0},"104":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"139":{"tf":2.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":2.6457513110645907},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":10,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}},"q":{"df":1,"docs":{"136":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":3.872983346207417}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"107":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":2,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"104":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":2.0},"153":{"tf":1.4142135623730951}},"n":{"d":{"df":0,"docs":{},"o":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"r":{"df":8,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":79,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":4.58257569495584},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.4142135623730951},"39":{"tf":3.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":3.1622776601683795},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":3.3166247903554},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"o":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":4.242640687119285},"178":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"df":1,"docs":{"115":{"tf":1.0}}},"r":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"2":{".":{"3":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"6":{"0":{"0":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"i":{"d":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.449489742783178},"61":{"tf":3.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979}}}},"u":{"df":10,"docs":{"117":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":2.23606797749979},"61":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"141":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":2,"docs":{"142":{"tf":1.0},"144":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":18,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0}},"i":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":6.082762530298219},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"70":{"tf":1.0},"99":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":6.0},"106":{"tf":1.0},"107":{"tf":2.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":9,"docs":{"106":{"tf":2.449489742783178},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"i":{"a":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"108":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{".":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"í":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"1":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.449489742783178},"116":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.449489742783178},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"y":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"1":{"1":{"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"h":{"1":{"\"":{",":{"\"":{"1":{"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.449489742783178},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{":":{"df":0,"docs":{},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"136":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":2,"docs":{"104":{"tf":1.0},"157":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":4.58257569495584},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"177":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"l":{"a":{"b":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"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":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"t":{"b":{"4":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"\"":{",":{"\"":{"4":{"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"f":{"3":{"0":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":2,"docs":{"172":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"96":{"tf":1.0}}},"3":{"df":2,"docs":{"174":{"tf":1.0},"97":{"tf":1.0}}},"4":{"df":2,"docs":{"175":{"tf":1.0},"98":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"128":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"t":{"df":2,"docs":{"78":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}},"t":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"128":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":18,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"m":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"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":1,"docs":{"42":{"tf":1.0}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"í":{"a":{"df":3,"docs":{"106":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"l":{"a":{"df":3,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":2,"docs":{"104":{"tf":1.0},"112":{"tf":1.0}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"b":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":10,"docs":{"118":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0}}}},"r":{"df":5,"docs":{"159":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"9":{"tf":1.0}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}},"q":{"df":2,"docs":{"153":{"tf":1.0},"75":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"151":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"161":{"tf":1.0},"164":{"tf":1.0}}}},"t":{"df":0,"docs":{},"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":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"174":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"é":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":5,"docs":{"110":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/searchindex.json b/searchindex.json new file mode 100644 index 00000000..05600a36 --- /dev/null +++ b/searchindex.json @@ -0,0 +1 @@ +{"doc_urls":["en/introduction.html#welcome","en/introduction.html#gget-modules","en/updates.html#-whats-new","en/installation.html#installation","en/quick_start_guide.html#-quick-start-guide","en/alphafold.html#gget-alphafold-","en/alphafold.html#example","en/alphafold.html#tutorials","en/alphafold.html#-google-colab-tutorial","en/alphafold.html#-protein-structure-prediction-with-comparison-to-related-crystal-structures","en/alphafold.html#-gget-alphafold-faq","en/alphafold.html#references","en/archs4.html#gget-archs4-","en/archs4.html#examples","en/archs4.html#references","en/bgee.html#gget-bgee-","en/bgee.html#examples","en/bgee.html#references","en/blast.html#gget-blast-","en/blast.html#example","en/blast.html#references","en/blat.html#gget-blat-","en/blat.html#example","en/blat.html#references","en/cbio.html#gget-cbio-","en/cbio.html#search-subcommand-python-ggetcbio_search","en/cbio.html#plot-subcommand-python-ggetcbio_plot","en/cbio.html#examples","en/cbio.html#references","en/cellxgene.html#gget-cellxgene-","en/cellxgene.html#examples","en/cellxgene.html#references","en/cosmic.html#gget-cosmic-","en/cosmic.html#examples","en/cosmic.html#downloading-cosmic-databases","en/cosmic.html#references","en/diamond.html#gget-diamond-","en/diamond.html#example","en/diamond.html#references","en/elm.html#gget-elm-","en/elm.html#examples","en/elm.html#tutorials","en/elm.html#-general-gget-elm-demo","en/elm.html#-a-point-mutation-in-brca2-is-carcinogenic-due-to-the-loss-of-a-protein-interaction-motif","en/elm.html#-filter-gget-elm-results-based-on-disordered-protein-regions","en/elm.html#references","en/enrichr.html#gget-enrichr-","en/enrichr.html#examples","en/enrichr.html#tutorials","en/enrichr.html#references","en/gpt.html#gget-gpt-","en/gpt.html#example","en/info.html#gget-info-","en/info.html#example","en/info.html#references","en/muscle.html#gget-muscle-","en/muscle.html#example","en/muscle.html#references","en/mutate.html#gget-mutate-","en/mutate.html#examples","en/mutate.html#references","en/opentargets.html#gget-opentargets-","en/opentargets.html#examples","en/opentargets.html#references","en/pdb.html#gget-pdb-","en/pdb.html#examples","en/pdb.html#references","en/ref.html#gget-ref-","en/ref.html#examples","en/ref.html#references","en/search.html#gget-search-","en/search.html#example","en/search.html#references","en/setup.html#gget-setup-","en/setup.html#example","en/seq.html#gget-seq-","en/seq.html#examples","en/seq.html#references","en/contributing.html#welcome-to-ggets-contributing-guide","en/contributing.html#issues","en/contributing.html#create-a-new-issue","en/contributing.html#solve-an-issue","en/contributing.html#contribute-through-pull-requests","en/contributing.html#getting-started","en/contributing.html#commit-your-update","en/contributing.html#-self-review-the-following-before-creating-a-pull-request-","en/contributing.html#pull-request","en/contributing.html#your-pr-is-merged","en/code_of_conduct.html#contributor-covenant-code-of-conduct","en/code_of_conduct.html#our-pledge","en/code_of_conduct.html#our-standards","en/code_of_conduct.html#enforcement-responsibilities","en/code_of_conduct.html#scope","en/code_of_conduct.html#enforcement","en/code_of_conduct.html#enforcement-guidelines","en/code_of_conduct.html#1-correction","en/code_of_conduct.html#2-warning","en/code_of_conduct.html#3-temporary-ban","en/code_of_conduct.html#4-permanent-ban","en/code_of_conduct.html#attribution","en/cite.html#citation","en/cite.html#disclaimer","es/introduction.html#bienvenidos","es/introduction.html#módulos-gget","es/updates.html#-lo-más-reciente","es/installation.html#instalación","es/quick_start_guide.html#-guía-de-inicio-rápido","es/alphafold.html#gget-alphafold-","es/alphafold.html#ejemplo","es/alphafold.html#tutoriales","es/alphafold.html#-google-colab-tutorial","es/alphafold.html#-predicción-de-la-estructura-de-proteínas-con-comparación-con-estructuras-cristalinas-relacionadas","es/alphafold.html#-gget-alphafold---preguntas-más-frecuentes","es/alphafold.html#citar","es/archs4.html#gget-archs4-","es/archs4.html#ejemplo","es/archs4.html#citar","es/blast.html#gget-blast-","es/blast.html#por-ejemplo","es/blast.html#citar","es/blat.html#gget-blat-","es/blat.html#ejemplo","es/blat.html#citar","es/cellxgene.html#gget-cellxgene-","es/cellxgene.html#ejemplo","es/cellxgene.html#citar","es/cosmic.html#gget-cosmic-","es/cosmic.html#por-ejemplo","es/cosmic.html#descargar-bases-de-datos-cosmic","es/cosmic.html#citar","es/diamond.html#gget-diamond-","es/diamond.html#ejemplo","es/diamond.html#citar","es/elm.html#gget-elm-","es/elm.html#ejemplo","es/enrichr.html#gget-enrichr-","es/enrichr.html#ejemplo","es/gpt.html#gget-gpt-","es/gpt.html#por-ejemplo","es/info.html#gget-info-","es/info.html#por-ejemplo","es/muscle.html#gget-muscle-","es/muscle.html#por-ejemplo","es/mutate.html#gget-mutate-","es/mutate.html#ejemplos","es/pdb.html#gget-pdb-","es/pdb.html#por-ejemplo","es/ref.html#gget-ref-","es/ref.html#por-ejemplo","es/search.html#gget-search-","es/search.html#por-ejemplo","es/setup.html#gget-setup-","es/setup.html#por-ejemplo","es/seq.html#gget-seq-","es/seq.html#por-ejemplo","es/contributing.html#bienvenido-a-la-guía-de-contribución-de-gget","es/contributing.html#issues-asuntos","es/contributing.html#crear-un-nuevo-issue","es/contributing.html#resolver-un-issue","es/contributing.html#contribuir-a-través-de-pull-requests-prs","es/contributing.html#empezar","es/contributing.html#confirma-sus-actualizaciones","es/contributing.html#-auto-revisa-lo-siguiente-antes-de-crear-un-pr-","es/contributing.html#crear-un-pull-request-pr","es/contributing.html#su-pr-está-fusionado","es/code_of_conduct.html#código-de-conducta-convenido-para-contribuyentes","es/code_of_conduct.html#nuestro-compromiso","es/code_of_conduct.html#nuestros-estándares","es/code_of_conduct.html#aplicación-de-las-responsabilidades","es/code_of_conduct.html#alcance","es/code_of_conduct.html#aplicación","es/code_of_conduct.html#guías-de-aplicación","es/code_of_conduct.html#1-corrección","es/code_of_conduct.html#2-aviso","es/code_of_conduct.html#3-expulsión-temporal","es/code_of_conduct.html#4-expulsión-permanente","es/code_of_conduct.html#atribución","es/cite.html#citar","es/cite.html#descargo-de-responsabilidad"],"index":{"documentStore":{"docInfo":{"0":{"body":113,"breadcrumbs":2,"title":1},"1":{"body":172,"breadcrumbs":3,"title":2},"10":{"body":0,"breadcrumbs":5,"title":3},"100":{"body":1822,"breadcrumbs":3,"title":1},"101":{"body":31,"breadcrumbs":3,"title":1},"102":{"body":131,"breadcrumbs":2,"title":1},"103":{"body":280,"breadcrumbs":3,"title":2},"104":{"body":1493,"breadcrumbs":6,"title":3},"105":{"body":22,"breadcrumbs":2,"title":1},"106":{"body":417,"breadcrumbs":8,"title":4},"107":{"body":370,"breadcrumbs":4,"title":2},"108":{"body":202,"breadcrumbs":3,"title":1},"109":{"body":0,"breadcrumbs":3,"title":1},"11":{"body":55,"breadcrumbs":3,"title":1},"110":{"body":0,"breadcrumbs":5,"title":3},"111":{"body":0,"breadcrumbs":14,"title":12},"112":{"body":0,"breadcrumbs":7,"title":5},"113":{"body":62,"breadcrumbs":3,"title":1},"114":{"body":314,"breadcrumbs":4,"title":2},"115":{"body":91,"breadcrumbs":3,"title":1},"116":{"body":82,"breadcrumbs":3,"title":1},"117":{"body":296,"breadcrumbs":4,"title":2},"118":{"body":91,"breadcrumbs":4,"title":2},"119":{"body":54,"breadcrumbs":3,"title":1},"12":{"body":177,"breadcrumbs":4,"title":2},"120":{"body":234,"breadcrumbs":4,"title":2},"121":{"body":58,"breadcrumbs":3,"title":1},"122":{"body":43,"breadcrumbs":3,"title":1},"123":{"body":683,"breadcrumbs":4,"title":2},"124":{"body":119,"breadcrumbs":3,"title":1},"125":{"body":37,"breadcrumbs":3,"title":1},"126":{"body":595,"breadcrumbs":4,"title":2},"127":{"body":42,"breadcrumbs":4,"title":2},"128":{"body":21,"breadcrumbs":7,"title":5},"129":{"body":95,"breadcrumbs":3,"title":1},"13":{"body":72,"breadcrumbs":3,"title":1},"130":{"body":313,"breadcrumbs":4,"title":2},"131":{"body":106,"breadcrumbs":3,"title":1},"132":{"body":44,"breadcrumbs":3,"title":1},"133":{"body":404,"breadcrumbs":4,"title":2},"134":{"body":269,"breadcrumbs":3,"title":1},"135":{"body":399,"breadcrumbs":4,"title":2},"136":{"body":594,"breadcrumbs":3,"title":1},"137":{"body":418,"breadcrumbs":4,"title":2},"138":{"body":13,"breadcrumbs":4,"title":2},"139":{"body":261,"breadcrumbs":4,"title":2},"14":{"body":77,"breadcrumbs":3,"title":1},"140":{"body":97,"breadcrumbs":4,"title":2},"141":{"body":199,"breadcrumbs":4,"title":2},"142":{"body":87,"breadcrumbs":4,"title":2},"143":{"body":517,"breadcrumbs":4,"title":2},"144":{"body":72,"breadcrumbs":3,"title":1},"145":{"body":345,"breadcrumbs":4,"title":2},"146":{"body":286,"breadcrumbs":4,"title":2},"147":{"body":322,"breadcrumbs":4,"title":2},"148":{"body":178,"breadcrumbs":4,"title":2},"149":{"body":473,"breadcrumbs":4,"title":2},"15":{"body":134,"breadcrumbs":4,"title":2},"150":{"body":60,"breadcrumbs":4,"title":2},"151":{"body":68,"breadcrumbs":4,"title":2},"152":{"body":25,"breadcrumbs":4,"title":2},"153":{"body":184,"breadcrumbs":4,"title":2},"154":{"body":48,"breadcrumbs":4,"title":2},"155":{"body":74,"breadcrumbs":10,"title":7},"156":{"body":0,"breadcrumbs":5,"title":2},"157":{"body":37,"breadcrumbs":7,"title":4},"158":{"body":34,"breadcrumbs":6,"title":3},"159":{"body":0,"breadcrumbs":9,"title":6},"16":{"body":103,"breadcrumbs":3,"title":1},"160":{"body":69,"breadcrumbs":4,"title":1},"161":{"body":10,"breadcrumbs":6,"title":3},"162":{"body":156,"breadcrumbs":12,"title":9},"163":{"body":100,"breadcrumbs":8,"title":5},"164":{"body":25,"breadcrumbs":7,"title":4},"165":{"body":0,"breadcrumbs":9,"title":6},"166":{"body":79,"breadcrumbs":5,"title":2},"167":{"body":134,"breadcrumbs":5,"title":2},"168":{"body":85,"breadcrumbs":7,"title":4},"169":{"body":52,"breadcrumbs":4,"title":1},"17":{"body":100,"breadcrumbs":3,"title":1},"170":{"body":55,"breadcrumbs":4,"title":1},"171":{"body":30,"breadcrumbs":6,"title":3},"172":{"body":58,"breadcrumbs":5,"title":2},"173":{"body":78,"breadcrumbs":5,"title":2},"174":{"body":74,"breadcrumbs":6,"title":3},"175":{"body":48,"breadcrumbs":6,"title":3},"176":{"body":60,"breadcrumbs":4,"title":1},"177":{"body":1883,"breadcrumbs":3,"title":1},"178":{"body":54,"breadcrumbs":5,"title":3},"18":{"body":182,"breadcrumbs":4,"title":2},"19":{"body":67,"breadcrumbs":3,"title":1},"2":{"body":1071,"breadcrumbs":4,"title":2},"20":{"body":49,"breadcrumbs":3,"title":1},"21":{"body":136,"breadcrumbs":4,"title":2},"22":{"body":43,"breadcrumbs":3,"title":1},"23":{"body":38,"breadcrumbs":3,"title":1},"24":{"body":45,"breadcrumbs":4,"title":2},"25":{"body":35,"breadcrumbs":6,"title":4},"26":{"body":172,"breadcrumbs":6,"title":4},"27":{"body":293,"breadcrumbs":3,"title":1},"28":{"body":309,"breadcrumbs":3,"title":1},"29":{"body":448,"breadcrumbs":4,"title":2},"3":{"body":20,"breadcrumbs":2,"title":1},"30":{"body":97,"breadcrumbs":3,"title":1},"31":{"body":32,"breadcrumbs":3,"title":1},"32":{"body":381,"breadcrumbs":4,"title":2},"33":{"body":33,"breadcrumbs":3,"title":1},"34":{"body":16,"breadcrumbs":5,"title":3},"35":{"body":90,"breadcrumbs":3,"title":1},"36":{"body":184,"breadcrumbs":4,"title":2},"37":{"body":97,"breadcrumbs":3,"title":1},"38":{"body":39,"breadcrumbs":3,"title":1},"39":{"body":223,"breadcrumbs":4,"title":2},"4":{"body":338,"breadcrumbs":6,"title":3},"40":{"body":232,"breadcrumbs":3,"title":1},"41":{"body":0,"breadcrumbs":3,"title":1},"42":{"body":0,"breadcrumbs":6,"title":4},"43":{"body":0,"breadcrumbs":11,"title":9},"44":{"body":0,"breadcrumbs":10,"title":8},"45":{"body":85,"breadcrumbs":3,"title":1},"46":{"body":316,"breadcrumbs":4,"title":2},"47":{"body":524,"breadcrumbs":3,"title":1},"48":{"body":5,"breadcrumbs":3,"title":1},"49":{"body":171,"breadcrumbs":3,"title":1},"5":{"body":240,"breadcrumbs":4,"title":2},"50":{"body":268,"breadcrumbs":4,"title":2},"51":{"body":10,"breadcrumbs":3,"title":1},"52":{"body":162,"breadcrumbs":4,"title":2},"53":{"body":95,"breadcrumbs":3,"title":1},"54":{"body":344,"breadcrumbs":3,"title":1},"55":{"body":119,"breadcrumbs":4,"title":2},"56":{"body":75,"breadcrumbs":3,"title":1},"57":{"body":37,"breadcrumbs":3,"title":1},"58":{"body":650,"breadcrumbs":4,"title":2},"59":{"body":330,"breadcrumbs":3,"title":1},"6":{"body":123,"breadcrumbs":3,"title":1},"60":{"body":21,"breadcrumbs":3,"title":1},"61":{"body":339,"breadcrumbs":4,"title":2},"62":{"body":635,"breadcrumbs":3,"title":1},"63":{"body":110,"breadcrumbs":3,"title":1},"64":{"body":201,"breadcrumbs":4,"title":2},"65":{"body":191,"breadcrumbs":3,"title":1},"66":{"body":52,"breadcrumbs":3,"title":1},"67":{"body":236,"breadcrumbs":4,"title":2},"68":{"body":128,"breadcrumbs":3,"title":1},"69":{"body":226,"breadcrumbs":3,"title":1},"7":{"body":0,"breadcrumbs":3,"title":1},"70":{"body":266,"breadcrumbs":4,"title":2},"71":{"body":48,"breadcrumbs":3,"title":1},"72":{"body":226,"breadcrumbs":3,"title":1},"73":{"body":87,"breadcrumbs":4,"title":2},"74":{"body":18,"breadcrumbs":3,"title":1},"75":{"body":107,"breadcrumbs":4,"title":2},"76":{"body":37,"breadcrumbs":3,"title":1},"77":{"body":246,"breadcrumbs":3,"title":1},"78":{"body":30,"breadcrumbs":6,"title":4},"79":{"body":0,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":5,"title":3},"80":{"body":21,"breadcrumbs":5,"title":3},"81":{"body":20,"breadcrumbs":4,"title":2},"82":{"body":0,"breadcrumbs":6,"title":4},"83":{"body":41,"breadcrumbs":4,"title":2},"84":{"body":4,"breadcrumbs":4,"title":2},"85":{"body":101,"breadcrumbs":9,"title":7},"86":{"body":55,"breadcrumbs":4,"title":2},"87":{"body":12,"breadcrumbs":4,"title":2},"88":{"body":0,"breadcrumbs":6,"title":4},"89":{"body":49,"breadcrumbs":3,"title":1},"9":{"body":0,"breadcrumbs":9,"title":7},"90":{"body":75,"breadcrumbs":3,"title":1},"91":{"body":42,"breadcrumbs":4,"title":2},"92":{"body":34,"breadcrumbs":3,"title":1},"93":{"body":25,"breadcrumbs":3,"title":1},"94":{"body":13,"breadcrumbs":4,"title":2},"95":{"body":27,"breadcrumbs":4,"title":2},"96":{"body":42,"breadcrumbs":4,"title":2},"97":{"body":41,"breadcrumbs":5,"title":3},"98":{"body":26,"breadcrumbs":5,"title":3},"99":{"body":32,"breadcrumbs":3,"title":1}},"docs":{"0":{"body":"pypi version image Downloads Conda license status status Star on GitHub gget is a free, open-source command-line tool and Python package that enables efficient querying of genomic databases. gget consists of a collection of separate but interoperable modules, each designed to facilitate one type of database querying in a single line of code. NOTE: The databases queried by gget are continuously being updated which sometimes changes their structure. gget modules are tested automatically on a biweekly basis and updated to match new database structures when necessary. If you encounter a problem, please upgrade to the latest gget version using pip install --upgrade gget. If the problem persists, please report the issue . Request a new feature gget info and gget seq are currently unable to fetch information for WormBase and FlyBase IDs (all other IDs are functioning normally). This issue arose due to a bug in Ensembl release 112. We appreciate Ensembl's efforts in addressing this issue and expect a fix soon. Thank you for your patience.","breadcrumbs":"Introduction » Welcome!","id":"0","title":"Welcome!"},"1":{"body":"These are the gget core modules. Click on any module to access detailed documentation. gget alphafoldPredict 3D protein structure from an amino acid sequence. gget archs4What is the expression of my gene in tissue X? gget bgeeFind all orthologs of a gene. gget blastBLAST a nucleotide or amino acid sequence. gget blatFind the genomic location of a nucleotide or amino acid sequence. gget cbioExplore a gene's expression in the specified cancers. gget cellxgeneGet ready-to-use single-cell RNA seq count matrices from certain tissues/ diseases/ etc. gget cosmicSearch for genes, mutations, and other factors associated with certain cancers. gget diamondAlign amino acid sequences to a reference. gget elmFind protein interaction domains and functions in an amino acid sequence. gget enrichrCheck if a list of genes is associated with a specific celltype/ pathway/ disease/ etc. gget infoFetch all of the information associated with an Ensembl ID. gget muscleAlign multiple nucleotide or amino acid sequences to each other. gget mutateMutate nucleotide sequences based on specified mutations. gget opentargetsExplore which diseases and drugs a gene is associated with. gget pdbFetch data from the Protein Data Bank (PDB) based on a PDB ID. gget refGet reference genomes from Ensembl. gget searchFind Ensembl IDs associated with the specified search word. gget seqFetch the nucleotide or amino acid sequence of a gene. If you use gget in a publication, please cite* : Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Read the article here: https://doi.org/10.1093/bioinformatics/btac836","breadcrumbs":"Introduction » gget modules","id":"1","title":"gget modules"},"10":{"body":"","breadcrumbs":"gget alphafold » 🔗 gget alphafold FAQ","id":"10","title":"🔗 gget alphafold FAQ"},"100":{"body":"license If you use gget in a publication, please cite: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 If using gget alphafold, please also cite: Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 And, if applicable: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034 If using gget archs4, please also cite: Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519 If using gget bgee, please also cite: Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793 If using gget blast, please also cite: Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712. If using gget blat, please also cite: Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518. If using gget cbio, please also cite: Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset. If using gget cellxgene, please also cite: Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/ If using gget cosmic, please also cite: Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903. If using gget diamond, please also cite: Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176 If using gget elm, please also cite: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 If using gget enrichr, please also cite: Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . If working with non-human/mouse datasets, please also cite: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483. If using gget info, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052 If using gget muscle, please also cite: Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169 If using gget opentargets, please also cite: Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572. If using gget pdb, please also cite: Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472. If using gget ref or gget search, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. If using gget seq, please also cite: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"Citation Guidelines » Citation","id":"100","title":"Citation"},"101":{"body":"gget is only as accurate as the databases/servers/APIs it queries from. The accuracy or reliability of the data is not guaranteed or warranted in any way and the providers disclaim liability of any kind whatsoever, including, without limitation, liability for quality, performance, merchantability and fitness for a particular purpose arising out of the use, or inability to use the data.","breadcrumbs":"Citation Guidelines » Disclaimer","id":"101","title":"Disclaimer"},"102":{"body":"pypi version image Downloads Conda license status status Star on GitHub gget es un programa gratuito de código fuente abierta de Terminal y Python que permite la consulta eficiente de bases de datos genómicas. gget consiste en un conjunto de módulos separados pero interoperables, cada uno diseñado para facilitar un tipo de consulta de base de datos en una sola línea de código. Las bases de datos consultadas por gget se actualizan continuamente, lo que a veces cambia su estructura. Los módulos gget se prueban automáticamente cada dos semanas y se actualizan para que coincidan con las nuevas estructuras de la base de datos cuando es necesario. Si encuentra algún problema, actualice a la última versión de gget usando pip install --upgrade gget. Si el problema persiste, informa el problema . Solicitar una nueva función","breadcrumbs":"Introdución » ¡Bienvenidos!","id":"102","title":"¡Bienvenidos!"},"103":{"body":"Estos son los módulos principales de gget. Haga clic en cualquier módulo para acceder a la documentación detallada. gget alphafoldPredecir la estructura 3D de una proteína a partir de una secuencia de aminoácidos. gget archs4¿Cuál es la expresión de mi gen en el tejido X? gget bgeeEncontrar todos los ortólogos de un gen. gget blastRealizar un BLAST de una secuencia de nucleótidos o aminoácidos. gget blatEncontrar la ubicación genómica de una secuencia de nucleótidos o aminoácidos. gget cbioExplorar la expresión de un gen en los cánceres especificados. gget cellxgeneObtener matrices de conteo de ARN de células individuales listas para usar para ciertos tejidos/enfermedades/etc. gget cosmicBuscar genes, mutaciones y otros factores asociados con ciertos cánceres. gget diamondAlinear secuencias de aminoácidos a una referencia. gget elmEncontrar dominios y funciones de interacción de proteínas en una secuencia de aminoácidos. gget enrichrVerificar si una lista de genes está asociada con un tipo celular específico/ vía/ enfermedad/ etc. gget infoRecuperar toda la información asociada con un ID de Ensembl. gget muscleAlinear múltiples secuencias de nucleótidos o aminoácidos entre sí. gget mutateMutar secuencias de nucleótidos según mutaciones específicas. gget opentargetsExplorar qué enfermedades y medicamentos están asociados con un gen. gget pdbRecuperar datos de la Base de Datos de Proteínas (PDB) según un ID de PDB. gget refObtener genomas de referencia de Ensembl. gget searchEncontrar IDs de Ensembl asociados con la palabra de búsqueda especificada. gget seqRecuperar la secuencia de nucleótidos o aminoácidos de un gen. Si usa gget en una publicación, por favor cite* : Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lea el artículo aquí: https://doi.org/10.1093/bioinformatics/btac836 Gracias a Victor Garcia-Ruiz y Anna Karen Orta por su ayuda con la traduccion del sitio web.","breadcrumbs":"Introdución » Módulos gget","id":"103","title":"Módulos gget"},"104":{"body":"Versión ≥ 0.28.6 (2 de junio de 2024): Nuevo módulo: gget mutate gget cosmic : Ahora puedes descargar bases de datos completas de COSMIC utilizando el argumento download_cosmic gget ref : Ahora puede obtener la ensambladura del genoma GRCh27 usando species='human_grch37' gget search : Ajusta el acceso a los datos humanos a la estructura de la versión 112 de Ensembl (corrige issue 129 ) Version ≥ 0.28.5 (May 29, 2024): Retirado debido a un error con 'logging' en gget.setup(\"alphafold\") + mutaciones de inversión en gget mutate solo invierten la cadena en lugar de también calcular la hebra complementaria Versión ≥ 0.28.4 (31 de enero de 2024): gget setup : soluciona el error con la ruta del archivo al ejecutar gget.setup(\"elm\") en el sistema operativo Windows. Versión ≥ 0.28.3 (22 de enero de 2024): gget search y gget ref ahora también admiten hongos 🍄, protistas 🌝 y metazoos de invertebrados 🐝 🐜 🐌 🐙 (además de vertebrados y plantas) Nuevo módulo: gget cosmic gget enrichr : corrige puntos de dispersión duplicados en el gráfico cuando los nombres de las rutas están duplicados gget elm : Se cambió el nombre de la columna de resultados orto 'Ortholog_UniProt_ID' a 'Ortholog_UniProt_Acc' para reflejar correctamente el contenido de la columna, que son accesos de UniProt. 'UniProt ID' se cambió a 'UniProt Acc' en la documentación para todos los módulos gget. Se cambió el nombre de la columna de resultados ortogonales 'motif_in_query' a 'motif_inside_subject_query_overlap'. Se agregó información del dominio de interacción a los resultados (nuevas columnas: \"InteractionDomainId\", \"InteractionDomainDescription\", \"InteractionDomainName\"). La cadena de expresiones regulares para coincidencias de expresiones regulares se encapsuló de la siguiente manera: \"(?=(regex))\" (en lugar de pasar directamente la cadena de expresiones regulares \"regex\") para permitir capturar todas las apariciones de un motivo cuando la longitud del motivo es variable y hay son repeticiones en la secuencia ( https://regex101.com/r/HUWLlZ/1 ). gget setup : utilice el argumento out para especificar un directorio en el que se descargará la base de datos ELM. Completa esta solicitud de función . gget Diamond : El comando DIAMOND ahora se ejecuta con el indicador --ignore-warnings, lo que permite secuencias de nicho, como secuencias de aminoácidos que solo contienen caracteres de nucleótidos y secuencias repetidas. Esto también es válido para las alineaciones DIAMOND realizadas dentro de gget elm . Cambio de back-end de gget ref y gget search : la versión actual de Ensembl se obtiene del nuevo archivo de versión en el sitio FTP de Ensembl para evitar errores durante la carga de nuevos lanzamientos. gget search : Los resultados del enlace FTP (--ftp) se guardan en formato de archivo txt en lugar de json. Se corrigieron enlaces URL al resumen de genes de Ensembl para especies con un nombre de subespecie e invertebrados. gget ref : Cambios de back-end para aumentar la velocidad. Nuevo argumento: list_iv_species para enumerar todas las especies de invertebrados disponibles (se puede combinar con el argumento release para obtener todas las especies disponibles de una liberación específica de Ensembl) Versión ≥ 0.28.2 (15 de noviembre de 2023): gget info : devuelve un mensaje de error cuando el servidor NCBI falla por un motivo distinto a un error de recuperación (esto es un error en el lado del servidor en lugar de un error con gget) Reemplace el argumento obsoleto 'texto' para los métodos de tipo find() siempre que se usen con la dependencia BeautifulSoup gget elm : Elimina instancias de falsos positivos y verdaderos negativos de los resultados devueltos. gget elm : agrega el argumento expand Versión ≥ 0.28.0 (5 de noviembre de 2023): Documentación actualizada de gget muscle para agregar un tutorial sobre cómo visualizar secuencias con diferentes longitudes de nombres de secuencia + ligero cambio en la visualización devuelta para que sea un poco más sólida ante diferentes nombres de secuencia gget muscle ahora también permite una lista de secuencias como entrada (como alternativa a proporcionar la ruta a un archivo FASTA) Permitir filtro de genes faltante para gget cellxgene (corrige error ) gget seq : permite nombres de genes faltantes (correccione [https://github.com/pachterlab/gget/issues/107](https://github.com/pachterlab/gget /números/107)) Nuevos argumentos para gget enrichr : use el argumento kegg_out y kegg_rank para crear una imagen de la vía KEGG con los genes del análisis de enriquecimiento resaltados (gracias a [este PR](https ://github.com/pachterlab/gget/pull/106) por Noriaki Sato ) Nuevos módulos: gget elm y gget Diamond Versión ≥ 0.27.9 (7 de agosto de 2023): Nuevos argumentos para gget enrichr : use el argumento background_list para proporcionar una lista de genes 'background' gget search ahora también busca sinónimos Ensembl (además de nombres y descripciones de genes) para obtener resultados de búsqueda más completos (gracias a Samuel Klein por la sugerencia ) Versión ≥ 0.27.8 (12 de julio de 2023): Nuevo argumento para gget search : especifique la versión de Ensembl desde la cual se obtiene la información con -r --release Se corrigió un error en gget pdb (este error se introdujo en la versión 0.27.5) Versión ≥ 0.27.7 (15 de mayo de 2023): Se movieron las dependencias para los módulos gget gpt y gget cellxgene de los requisitos instalados automáticamente a gget setup Dependencias gget alphafold actualizadas para compatibilidad con Python >= 3.10 Se agregó el argumento census_version a gget cellxgene Versión ≥ 0.27.6 (1 de mayo de 2023) (TIRO debido a problemas con las dependencias -> reemplazada por la versión 0.27.7): Gracias a el PR de Tomás Di Domenico : gget search ahora también puede consultar los ID de plantas 🌱 Ensembl Nuevo módulo: gget cellxgene Versión ≥ 0.27.5 (6 de abril de 2023): Se actualizó gget search para que funcione correctamente con la nueva versión de Pandas 2.0.0 (lanzado el 3 de abril de 2023), además de versiones anteriores de Pandas Se actualizó gget info con nuevos banderas uniprot y ncbi que permiten desactivar los resultados de estas bases de datos de forma independiente para ahorrar tiempo de ejecución (nota: el indicador ensembl_only quedó obsoleto) Todos los módulos gget ahora tienen una bandera -q / --quiet (para Python: verbose=False) para desactivar la información de progreso Versión ≥ 0.27.4 (19 de marzo de 2023): Nuevo módulo: gget gpt Versión ≥ 0.27.3 (11 de marzo de 2023): gget info excluye los ID de PDB de forma predeterminada para aumentar la velocidad (los resultados de PDB se pueden incluir usando la marca --pdb / pdb=True). Versión ≥ 0.27.2 (1 de enero de 2023): Se actualizó gget alphafold a DeepMind's AlphaFold v2.3.0 (incluidos los nuevos argumentos multimer_for_monomer y multimer_recycles) Versión ≥ 0.27.0 (10 de diciembre de 2022): Se actualizó gget alphafold para que coincida con los cambios recientes de DeepMind Número de versión actualizado para que coincida con la edad de el creador de gget siguiendo una larga tradición de laboratorio de Pachter Versión ≥ 0.3.13 (11 de noviembre de 2022): Tiempo de ejecución reducido para gget enrichr y gget archs4 cuando se usa con ID de Ensembl Versión ≥ 0.3.12 (10 de noviembre de 2022): gget info ahora también devuelve datos de localización subcelular de UniProt El nuevo indicador gget info ensembl_only devuelve solo los resultados de Ensembl Tiempo de ejecución reducido para gget info y gget seq Versión ≥ 0.3.11 (7 de septiembre de 2022): Nuevo módulo: gget pdb Versión ≥ 0.3.10 (2 de septiembre de 2022): gget alphafold ahora también devuelve valores pLDDT para generar gráficos sin volver a ejecutar el programa (consulte también las preguntas frecuentes de gget alphafold ) Versión ≥ 0.3.9 (25 de agosto de 2022): Instrucciones de instalación de openmm actualizadas para gget alphafold Versión ≥ 0.3.8 (12 de agosto de 2022): Se corrigieron los requisitos de versión de mysql-connector-python Versión ≥ 0.3.7 (9 de agosto de 2022): NOTA: El sitio FTP de Ensembl cambió su estructura el 8 de agosto de 2022. Actualice a la versión gget ≥ 0.3.7 si usa obtener ref Versión ≥ 0.3.5 (6 de agosto de 2022): Nuevo módulo: gget alphafold Versión ≥ 0.2.6 (7 de julio de 2022): ¡ gget ref ahora admite genomas de plantas! 🌱 Versión ≥ 0.2.5 (30 de junio de 2022): NOTA: UniProt cambió la estructura de su API el 28 de junio de 2022. Actualice a la versión gget ≥ 0.2.5 si usa alguno de los módulos que consultan datos de UniProt ( gget info y gget seq ). Versión ≥ 0.2.3: (26 de junio de 2022): JSON ahora es el formato de regreso predeterminado para la Terminal para los módulos que anteriormente devolvían el formato de data frame (CSV) (el formato se puede convertir a data frame/CSV usando la bandera [-csv][--csv]). El formato data frame/CSV sigue siendo el formato de regreso predeterminada para Python (Jupyter Lab/Google Colab) (y se puede convertir a JSON con json=True). Para todos los módulos, el primer parámetro requerido se convirtió en un parámetro posicional y ya no debe nombrarse en la línea de comandos, p. ej. gget ref -s human → gget ref human. gget info: [--expand] está en desuso. El módulo ahora siempre devolverá toda la información disponible. Ligeros cambios en la salida devuelta por gget info, incluida la devolución de los ID de Ensembl versionados. gget info y gget seq ahora son compatibles con las IDs de WormBase y FlyBase. Ahora también se pueden ingresar IDs de tipo Ensembl a gget archs4 y gget enrichr con la bandera [-e][--ensembl] (ensembl=True para Python (Jupyter Lab / Google Colab)). El parámetro seqtype de gget seq fue reemplazado por la bandera [-t][--translate] (translate=True/False para Python (Jupyter Lab / Google Colab)) que devolverá secuencias de nucleótidos (False) o aminoácidos (True). El parámetro seqtype de gget search se renombró a id_type (aún tomando los mismos parámetros 'gene' o 'transcript').","breadcrumbs":"¡Lo más reciente! » ✨ ¡Lo más reciente!","id":"104","title":"✨ ¡Lo más reciente!"},"105":{"body":"pypi version image pip install --upgrade gget Alternativa: conda install -c bioconda gget Para uso en Jupyter Lab / Google Colab: import gget","breadcrumbs":"Instalación » Instalación","id":"105","title":"Instalación"},"106":{"body":"Terminal: # Obtenga todos los FTP de anotaciones y referencias de Homo sapiens de la última versión de Ensembl\n$ gget ref homo_sapiens # Obtenga IDs de Ensembl de genes humanos con \"ace2\" o \"angiotensin converting enzyme 2\" en su nombre/descripción\n$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2' # Busque el gen ENSG00000130234 (ACE2) y su transcripción ENST00000252519\n$ gget info ENSG00000130234 ENST00000252519 # Obtenga la secuencia de aminoácidos de la transcripción canónica del gen ENSG00000130234\n$ gget seq --translate ENSG00000130234 # Rápidamente encuentra la ubicación genómica de la secuencia de aminoácidos\n$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # BLAST la secuencia de aminoácidos\n$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Alinee múltiples secuencias de nucleótidos o aminoácidos entre sí (también acepta la ruta al archivo FASTA) $ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Alinee una o más secuencias de aminoácidos con una referencia (que contiene una o más secuencias) (BLAST local) (también acepta rutas a archivos FASTA) $ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Alinea secuencias de nucleótidos o aminoácidos en un archivo FASTA\n$ gget muscle path/to/file.fa # Use Enrichr para un análisis de ontología de una lista de genes\n$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P # Obtene la expresión en tejido humano del gen ACE2\n$ gget archs4 -w tissue ACE2 # Obtenga la estructura de la proteína (en formato PDB) de ACE2 (ID de PDB devuelta por gget info)\n$ gget pdb 1R42 -o 1R42.pdb # Encuentre motivos lineales eucarióticos (ELM) en una secuencia de aminoácidos\n$ gget setup elm # solo debe ejecutarse una vez\n$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Obtene una matriz de recuento de scRNAseq (formato AnnData) basada en genes, tejidos y tipos de células especificados (especie predeterminada: humano)\n$ gget setup cellxgene # solo debe ejecutarse una vez\n$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad # Predice la estructura proteica de GFP a partir de su secuencia de aminoácidos\n$ gget setup alphafold # solo debe ejecutarse una vez\n$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK Python (Jupyter Lab / Google Colab): import gget\ngget.ref(\"homo_sapiens\")\ngget.search([\"ace2\", \"angiotensin converting enzyme 2\"], \"homo_sapiens\")\ngget.info([\"ENSG00000130234\", \"ENST00000252519\"])\ngget.seq(\"ENSG00000130234\", translate=True)\ngget.blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"])\ngget.diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"], database=\"ontology\", plot=True)\ngget.archs4(\"ACE2\", which=\"tissue\")\ngget.pdb(\"1R42\", save=True) gget.setup(\"elm\") # solo debe ejecutarse una vez\northo_df, regex_df = gget.elm(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\") gget.setup(\"cellxgene\") # solo debe ejecutarse una vez\ngget.cellxgene(gene = [\"ACE2\", \"SLC5A1\"], tissue = \"lung\", cell_type = \"mucus secreting cell\") gget.setup(\"alphafold\") # solo debe ejecutarse una vez\ngget.alphafold(\"MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK\") Use a gget con R usando reticulate : system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") gget$ref(\"homo_sapiens\")\ngget$search(list(\"ace2\", \"angiotensin converting enzyme 2\"), \"homo_sapiens\")\ngget$info(list(\"ENSG00000130234\", \"ENST00000252519\"))\ngget$seq(\"ENSG00000130234\", translate=TRUE)\ngget$blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$muscle(list(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"), out=\"out.afa\")\ngget$diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"), database=\"ontology\")\ngget$archs4(\"ACE2\", which=\"tissue\")\ngget$pdb(\"1R42\", save=TRUE) Más ejemplos","breadcrumbs":"Guía de inicio rápido » 🪄 Guía de inicio rápido","id":"106","title":"🪄 Guía de inicio rápido"},"107":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Predice la estructura en 3D de cualquier proteína derivada de su secuencia de aminoácidos usando una versión simplificada del algoritmo AlphaFold2 de DeepMind , originalmente producido y publicado para AlphaFold Colab . Resultado: Predicción de la estructura (en formato PDB) y el errór de alineación (en formato json). Antes de usar gget alphafold por primera vez: Instale openmm v7.5.1 (o v7.7.0 para Python >= 3.10) ejecutando el siguiente comando desde la línea de comando: conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1 (reemplazar con openmm=7.7.0 para Python >= 3.10) Recomendación: siga con conda update -qy conda para actualizar conda a la última versión. Corre gget setup alphafold / gget.setup(\"alphafold\") (ver también gget setup ). Al ejecutar gget setup alphafold / gget.setup(\"alphafold\") se descargará e instalará la última versión de AlphaFold2 alojada en el AlphaFold GitHub Repo . Puede volver a ejecutar este comando en cualquier momento para actualizar el software cuando hay una nueva versión de AlphaFold. Parámetro posicional sequence Secuencia de aminoácidos (str), o una lista de secuencias ( gget alphafold automaticamente usa el algoritmo del multímero si múltiples secuencias son ingresadas ), o una ruta a un archivo formato FASTA. Parámetros optionales -mr --multimer_recycles El algoritmo de multímero se reciclara hasta que las predicciones dejen de cambiar, el limite de ciclos esta indicado aqui. Por defecto: 3 Para obtener más exactitud, ajusta este limite a 20 (al costo de ejecuciones mas tardadas). -o --out Ruta a la carpeta para guardar los resultados de la predicción (str). Por defecto: \"./[fecha_tiempo]_gget_alphafold_prediction\". Banderas -mfm --multimer_for_monomer Usa el algoritmo de multímero para un monómero. -r --relax Relaja el mejor modelo con el algoritmo AMBER. -q --quiet Uso limitado para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False. plot Solo para Python. plot=True provée una visualización interactiva de la predicción con el errór de alineación en 3D con py3Dmol y matplotlib (por defecto: True). show_sidechains Solo para Python. show_sidechains=True incluye las cadenas laterales de proteínas en el esquema (por defecto: True).","breadcrumbs":"gget alphafold » gget alphafold 🪢","id":"107","title":"gget alphafold 🪢"},"108":{"body":"# Predice la estructura de una proteína derivada de su secuencia de aminoácidos\ngget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo\ngget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.\ngget pdb 3UQ3 -o 3UQ3.pdb\ngget pdb 2K42 -o 2K42.pdb # Python\n# Predice la estructura de una proteína derivada de su secuencia de aminoácidos\ngget.alphafold(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\") # Encuentra secuencias similares previamente depositadas en el PDB para análisis comparativo\ngget.blast(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\", database=\"pdbaa\") # Busca los archivos PDB de estructuras similares resultantes de gget blast para comparar y obtener una medida de calidad del modelo predecido.\ngget.pdb(\"3UQ3\", save=True)\ngget.pdb(\"2K42\", save=True) → gget alphafold produce la estructura predecida (en formato PDB) y el errór de alineación (en formato json) en una nueva carpeta (\"./[fecha_tiempo]_gget_alphafold_prediction\"). Este ejemplo demuestra como usar gget blast y gget pdb para correr un análisis comparativo. Los archivos PDB se pueden ver en 3D con RCSB 3D view , o usando programas como PyMOL o Blender . Para comparar múltiples archivos PDB, use RCSB alignment . Python también produce esquemas interactivos , los cuales se pueden generar de los archivos PDB y JSON, como es describido en gget alphafold FAQ Q4.","breadcrumbs":"gget alphafold » Ejemplo","id":"108","title":"Ejemplo"},"109":{"body":"","breadcrumbs":"gget alphafold » Tutoriales","id":"109","title":"Tutoriales"},"11":{"body":"If you use gget alphafold in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 And, if applicable: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034","breadcrumbs":"gget alphafold » References","id":"11","title":"References"},"110":{"body":"","breadcrumbs":"gget alphafold » 🔗 Google Colab tutorial","id":"110","title":"🔗 Google Colab tutorial"},"111":{"body":"","breadcrumbs":"gget alphafold » 🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas","id":"111","title":"🔗 Predicción de la estructura de proteínas con comparación con estructuras cristalinas relacionadas"},"112":{"body":"","breadcrumbs":"gget alphafold » 🔗 gget alphafold - preguntas más frecuentes","id":"112","title":"🔗 gget alphafold - preguntas más frecuentes"},"113":{"body":"Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 Y, si corresponde: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034","breadcrumbs":"gget alphafold » Citar","id":"113","title":"Citar"},"114":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no es especificado de otra manera. Las banderas son designadas como cierto o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede obtener desde Terminal con la bandera -h --help. Encuentra los genes más correlacionados a un gen de interés, o bién, encuentra los tejidos donde un gen se expresa usando la base de datos ARCHS4 . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional gene Nombre corto (símbolo del gen) del gen de interés, p. ej. STAT4. Alternativamente: usa la bandera --ensembl para ingresar un ID tipo Ensembl, p. ej. ENSG00000138378. Parámetros optionales -w --which 'correlation' (correlación; se usa por defecto) o 'tissue' (tejido). 'correlation' produce una tabla que contiene los 100 genes más correlacionados con el gen de interés. La correlación de Pearson se calcula de todas las muestras y tejidos en ARCHS4 . 'tissue' produce un atlas de expresión tisular calculado de todas las muestras humanas o de ratón (según lo definido usando el parámetro --species (especies)) en ARCHS4 . -s --species 'human' (humano; se usa por defecto) o 'mouse' (ratón). Define si se usan muestras humanas o de ratón de ARCHS4 . (Solo aplica para el atlas de expresión tisular.) -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, use save=True para guardar los resultados en el directorio de trabajo actual. Banderas -e --ensembl Usa esta bandera si gene se ingresa como ID tipo Ensembl. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para obtener los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget archs4 » gget archs4 🐁","id":"114","title":"gget archs4 🐁"},"115":{"body":"gget archs4 ACE2 # Python\ngget.archs4(\"ACE2\") → Produce los 100 genes más correlacionados con el gen ACE2: gene_symbol pearson_correlation SLC5A1 0.579634 CYP2C18 0.576577 . . . . . . gget archs4 -w tissue ACE2 # Python\ngget.archs4(\"ACE2\", which=\"tissue\") → Produce la expresión tisular de ACE2 (por defecto, se utilizan datos humanos): id min q1 median q3 max System.Urogenital/Reproductive System.Kidney.RENAL CORTEX 0.113644 8.274060 9.695840 10.51670 11.21970 System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL 0.113644 5.905560 9.570450 13.26470 13.83590 . . . . . . . . . . . . . . . . . . Consulte este tutorial de Dave Tang, quien escribió un script R para crear esta visualización con los resultados de gget archs4 en formato JSON: image Más ejemplos","breadcrumbs":"gget archs4 » Ejemplo","id":"115","title":"Ejemplo"},"116":{"body":"Si utiliza gget archs4 en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519","breadcrumbs":"gget archs4 » Citar","id":"116","title":"Citar"},"117":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. BLAST una secuencia de nucleótidos o aminoácidos a cualquier base de datos BLAST . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional sequence Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt. Parámetros optionales -p --program 'blastn', 'blastp', 'blastx', 'tblastn', o 'tblastx'. Por defecto: 'blastn' para secuencias de nucleótidos; 'blastp' para secuencias de aminoácidos. -db --database 'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', o 'pdbnt'. Por defecto: 'nt' para secuencias de nucleótidos; 'nr' para secuencias de aminoácidos. Más información sobre los bases de datos BLAST -l --limit Limita el número de resultados producidos. Por defecto: 50. -e --expect Define el umbral de 'expect value' . Por defecto: 10.0. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -lcf --low_comp_filt Activa el 'low complexity filter' (filtro de baja complejidad). -mbo --megablast_off Desactiva el algoritmo MegaBLAST. Por defecto: MegaBLAST esta activado (solo aplicable para blastn). -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget blast » gget blast 💥","id":"117","title":"gget blast 💥"},"118":{"body":"gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blast(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\") → Produce los resultados BLAST de la secuencia de interés. gget blast automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el programa BLAST en blastp con la base de datos nr . Description Scientific Name Common Name Taxid Max Score Total Score Query Cover ... PREDICTED: gamma-aminobutyric acid receptor-as... Colobus angolensis palliatus NaN 336983 180 180 100% ... . . . . . . . . . . . . . . . . . . . . . ... BLAST desde un archivo .fa o .txt: gget blast fasta.fa # Python\ngget.blast(\"fasta.fa\") → Produce los resultados BLAST de la primera secuencia contenida en el archivo 'fasta.fa'. Más ejemplos","breadcrumbs":"gget blast » Por ejemplo","id":"118","title":"Por ejemplo"},"119":{"body":"Si utiliza gget blast en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.","breadcrumbs":"gget blast » Citar","id":"119","title":"Citar"},"12":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Find the most correlated genes to a gene of interest or find the gene's tissue expression atlas using ARCHS4 . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument gene Short name (gene symbol) of gene of interest, e.g. STAT4. Alternatively: use flag --ensembl to input an Ensembl gene IDs, e.g. ENSG00000138378. Optional arguments -w --which 'correlation' (default) or 'tissue'. 'correlation' returns a gene correlation table that contains the 100 most correlated genes to the gene of interest. The Pearson correlation is calculated over all samples and tissues in ARCHS4 . 'tissue' returns a tissue expression atlas calculated from human or mouse samples (as defined by 'species') in ARCHS4 . -s --species 'human' (default) or 'mouse'. Defines whether to use human or mouse samples from ARCHS4 . (Only for tissue expression atlas.) -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -e --ensembl Add this flag if gene is given as an Ensembl gene ID. -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget archs4 » gget archs4 🐁","id":"12","title":"gget archs4 🐁"},"120":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Encuentra la ubicación genómica de una secuencia de nucleótidos o aminoácidos usando BLAT . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional sequence Secuencia de nucleótidos o aminoácidos, o una ruta a un archivo tipo FASTA o .txt. Parámetros optionales -st --seqtype 'DNA', 'protein', 'translated%20RNA', o 'translated%20DNA'. Por defecto: 'DNA' para secuencias de nucleótidos; 'protein' para secuencias de aminoácidos. -a --assembly Ensamblaje del genoma. 'human' (hg38) (se usa por defecto), 'mouse' (mm39) (ratón), 'zebrafish' (taeGut2) (pinzón cebra), o cualquiera de los ensamblajes de especies disponibles aquí (use el nombre corto del ensamblado, p. ej. 'hg38'). -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget blat » gget blat 🎯","id":"120","title":"gget blat 🎯"},"121":{"body":"gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blat(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\", assembly=\"taeGut2\") → Produce los resultados de BLAT para el ensamblaje taeGut2 (pinzón cebra). En este ejemplo, gget blat automáticamente detecta esta secuencia como una secuencia de aminoácidos y, por lo tanto, establece el tipo de secuencia (--seqtype) como proteína . genome query_size aligned_start aligned_end matches mismatches %_aligned ... taeGut2 88 12 88 77 0 87.5 ... Màs ejemplos","breadcrumbs":"gget blat » Ejemplo","id":"121","title":"Ejemplo"},"122":{"body":"Si utiliza gget blat en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.","breadcrumbs":"gget blat » Citar","id":"122","title":"Citar"},"123":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Query data de la base de datos CZ CELLxGENE Discover usando CZ CELLxGENE Discover Census . Produce: Un objeto AnnData que contiene la matriz de recuentos de genes y los metadatos de resultados de single cell RNA-seq de los tejidos/genes/etcetera previamente definidos. Antes de usar gget cellxgene por primera vez, corre gget setup cellxgene / gget.setup(\"cellxgene\") (ver también gget setup ). Parámetros opcionales -s --species 'homo_sapiens' o 'mus_musculus'. Por defecto: 'homo_sapiens'. -g --gene Str o lista de genes de interés o ID(s) tipo Ensembl. Por defecto: None (ninguno). Atención: Utilice la bandera -e / --ensembl (Python: ensembl=True) cuando ingrese ID(s) tipo Ensembl. Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de genes. -cv --census_version Versión del CZ CELLxGENE Discover Census (str), p. ej. \"2023-05-15\", o \"latest\" (ultima) o \"stable\" (estable). Por defecto: \"stable\" (estable). -cn --column_names Lista de columnas de metadatos a obtener (almacenadas en AnnData.obs). Por defecto: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type'] Para más opciones, ver: https://api.cellxgene.cziscience.com/curation/ui/#/ -> 'Schemas' -> 'dataset' -o --out Ruta al archivo para guardar el objeto AnnData formato .h5ad (o .csv con bandera -mo / --meta_only). ¡Requerido cuando se usa desde Terminal! Banderas -e --ensembl Usa esta bandera si gene se ingresa como ID tipo Ensembl. -mo --meta_only Solo produce la tabla (Dataframe) con metadatos (corresponde a AnnData.obs). -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa. Parámetros opcionales correspondientes a los atributos de metadatos de CZ CELLxGENE Discover --tissue Str o lista de tejido(s), p. ej. ['lung', 'blood']. Por defecto: None. Ver https://cellxgene.cziscience.com/gene-expression para ejemplos de tejidos. --cell_type Str o lista de tipo(s) de célula(s), p. ej. ['mucus secreting cell', 'neuroendocrine cell']. Por defecto: None. Ver https://cellxgene.cziscience.com/gene-expression y seleccione un tejido para ejemplos de tipos de células. --development_stage Str o lista de etapa(s) de desarrollo. Por defecto: None. --disease Str o lista de enfermedad(es). Por defecto: None. --sex Str o lista de sexo(s), p. ej. 'female' (femenina). Por defecto: None. --dataset_id Str o lista de CELLxGENE ID(s). Por defecto: None. --tissue_general_ontology_term_id Str o lista de tejido(s) del tipo high-level UBERON ID. Por defecto: None. Tejidos y sus IDs tipo UBERON se enumeran aquí . --tissue_general Str o lista de tejido(s) del tipo high-level. Por defecto: None. Tejidos y sus IDs de UBERON se enumeran aquí . --tissue_ontology_term_id Str o lista de ID(s) de 'tissue ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --assay_ontology_term_id Str o lista de ID(s) de 'assay ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --assay Str o lista de 'assays' (métodos) como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --cell_type_ontology_term_id Str o lista de ID(s) de 'celltype ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --development_stage_ontology_term_id Str o lista de ID(s) de 'development stage ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --disease_ontology_term_id Str o lista de ID(s) de 'disease ontology term' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --donor_id Str o lista de ID(s) de 'donor' (donador) como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --self_reported_ethnicity_ontology_term_id Str o lista de ID(s) de 'self-reported ethnicity ontology' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --self_reported_ethnicity Str o lista de etnias autoinformadas como están definidas en el esquema de datos del CELLxGENE . Por defecto: None. --sex_ontology_term_id Str o lista de ID(s) de 'sex ontology' como están definidos en el esquema de datos del CELLxGENE . Por defecto: None. --suspension_type Str o lista de tipo(s) de suspensión como están definidos en el esquema de datos del CELLxGENE . Por defecto: None.","breadcrumbs":"gget cellxgene » gget cellxgene 🍱","id":"123","title":"gget cellxgene 🍱"},"124":{"body":"gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad # Python\nadata = gget.cellxgene( gene = [\"ACE2\", \"ABCA1\", \"SLC5A1\"], tissue = \"lung\", cell_type = [\"mucus secreting cell\", \"neuroendocrine cell\"]\n)\nadata → Produce un objeto AnnData que contiene la matriz de recuentos de scRNAseq de los genes ACE2, ABCA1 y SLC5A1 en 3322 células secretoras de mucosidad y neuroendocrinas pulmonares humanas y sus metadatos correspondientes. Obtiene solo los metadatos (corresponde a AnnData.obs): gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv # Python\ndf = gget.cellxgene( meta_only = True, gene = \"ENSMUSG00000015405\", ensembl = True, tissue = \"lung\", species = \"mus_musculus\"\n)\ndf → Produce solo los metadatos de los conjuntos de datos de ENSMUSG00000015405 (ACE2), los cuales corresponden a células pulmonares murinas. Ver también: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html","breadcrumbs":"gget cellxgene » Ejemplo","id":"124","title":"Ejemplo"},"125":{"body":"Si utiliza gget cellxgene en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/","breadcrumbs":"gget cellxgene » Citar","id":"125","title":"Citar"},"126":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Busque genes, mutaciones, etc. asociados con cánceres utilizando la base de datos COSMIC (Catálogo de mutaciones somáticas en cáncer). Produce: JSON (línea de comandos) o marco de datos/CSV (Python) cuando download_cosmic=False. Cuando download_cosmic=True, descarga la base de datos solicitada en la carpeta especificada. Este módulo fue escrito en parte por @AubakirovArman (consulta de información) y @josephrich98 (descarga de base de datos). NOTA: Se aplican tarifas de licencia para el uso comercial de COSMIC. Puede leer más sobre la concesión de licencias de datos COSMIC aquí . Parámetro posicional (para consultar información) searchterm Término de búsqueda, que puede ser una mutación, un nombre de gen (o ID de Ensembl), una muestra, etc. Ejemplos para los argumentos de searchterm y entidad: searchterm entidad EGFR mutaciones -> Encuentra mutaciones en el gen EGFR asociadas con el cáncer v600e mutaciones -> Encuentra genes para los cuales una mutación v600e está asociada con el cáncer COSV57014428 mutaciones -> Encuentra mutaciones asociadas con esta ID de mutaciones COSMIC EGFR genes -> Obtiene el número de muestras, mutaciones simples/codificantes y fusiones observadas en COSMIC para EGFR prostate cáncer -> Obtiene el número de muestras probadas y mutaciones para el cáncer de próstata prostate sitio_tumoral -> Obtiene el número de muestras probadas, genes, mutaciones, fusiones, etc. con 'próstata' como sitio de tejido primario ICGC estudios -> Obtiene el código de proyecto y descripciones de todos los estudios de ICGC (Consortio Internacional del Genoma del Cáncer) EGFR pubmed -> Encuentra publicaciones de PubMed sobre EGFR y cáncer ICGC muestras -> Obtiene metadatos sobre todas las muestras de ICGC (Consortio Internacional del Genoma del Cáncer) COSS2907494 muestras -> Obtiene metadatos sobre esta ID de muestra COSMIC (tipo de cáncer, tejido, # genes analizados, # mutaciones, etc.) NOTA: (Solo Python) Establezca en None cuando se descarguen bases de datos COSMIC con download_cosmic=True. Parámetros opcionales (para consultar información) -e --entity 'mutations' (predeterminado), 'genes', 'cáncer', 'sitio_tumoral', 'estudios', 'pubmed' o 'muestras'. Define el tipo de resultados a devolver. -l --limit Limita el número de resultados a devolver. Predeterminado: 100. Banderas (para descargar bases de datos COSMIC) -d --download_cosmic Conmuta al modo de descarga de base de datos. -gm --gget_mutate DESACTIVA la creación de una versión modificada de la base de datos para usar con gget mutate. Python: gget_mutate es Verdadero por defecto. Establezca gget_mutate=False para deshabilitar. Parámetros opcionales (para descargar bases de datos COSMIC) -mc --mutation_class 'cancer' (predeterminado), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', o 'cancer_example' Tipo de base de datos COSMIC para descargar. -cv --cosmic_version Versión de la base de datos COSMIC. Predeterminado: Ninguno -> Se establece en la última versión por defecto. -gv --grch_version Versión del genoma de referencia humano GRCh en el que se basó la base de datos COSMIC (37 o 38). Predeterminado: 37 Parámetros opcionales (generales) -o --out Ruta al archivo (o carpeta cuando se descargan bases de datos con el flag download_cosmic) donde se guardarán los resultados, p. ej. 'ruta/a/resultados.json'. Predeterminado: None -> Cuando download_cosmic=False: Los resultados se devolverán a la salida estándar -> Cuando download_cosmic=True: La base de datos se descargará en el directorio de trabajo actual Banderas (generales) -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget cosmic » gget cosmic 🪐","id":"126","title":"gget cosmic 🪐"},"127":{"body":"Consultar información gget cosmic -e genes EGFR # Python\ngget.cosmic(\"EGFR\", entity=\"genes\") → Devuelve mutaciones en el gen EGFR asociadas con el cáncer en el formato: Gene Syntax Alternate IDs Canonical EGFR c.*2446A>G EGFR c.*2446A>G, EGFR p.?, ... y EGFR c.(2185_2283)ins(18) EGFR c.(2185_2283)ins(18), EGFR p.?, ... y . . . . . . . . . . . .","breadcrumbs":"gget cosmic » Por ejemplo","id":"127","title":"Por ejemplo"},"128":{"body":"gget cosmic --download_cosmic # Python\ngget.cosmic(searchterm=None, download_cosmic=True) → Descargue la base de datos sobre cáncer de COSMIC de la última versión de COSMIC.","breadcrumbs":"gget cosmic » Descargar bases de datos COSMIC","id":"128","title":"Descargar bases de datos COSMIC"},"129":{"body":"Si utiliza gget alphafold en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903.","breadcrumbs":"gget cosmic » Citar","id":"129","title":"Citar"},"13":{"body":"gget archs4 ACE2 # Python\ngget.archs4(\"ACE2\") → Returns the 100 most correlated genes to ACE2: gene_symbol pearson_correlation SLC5A1 0.579634 CYP2C18 0.576577 . . . . . . gget archs4 -w tissue ACE2 # Python\ngget.archs4(\"ACE2\", which=\"tissue\") → Returns the tissue expression of ACE2 (by default, human data is used): id min q1 median q3 max System.Urogenital/Reproductive System.Kidney.RENAL CORTEX 0.113644 8.274060 9.695840 10.51670 11.21970 System.Digestive System.Intestine.INTESTINAL EPITHELIAL CELL 0.113644 5.905560 9.570450 13.26470 13.83590 . . . . . . . . . . . . . . . . . . Check out this tutorial by Dave Tang who wrote an R script to create this figure from the gget archs4 JSON output: image More examples","breadcrumbs":"gget archs4 » Examples","id":"13","title":"Examples"},"130":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Alinee múltiples proteínas o secuencias de ADN traducidas usando DIAMOND (DIAMOND es similar a BLAST, pero este es un cálculo local). Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional query Secuencia(s) (str o lista) de aminoácidos, o una ruta a un archivo tipo FASTA. Parámetro requerido -ref --reference Secuencias de aminoácidos de referencia (str o lista), o una ruta a un archivo tipo FASTA. Parámetros optionales -db --diamond_db Ruta para guardar la base de datos DIAMOND creada a partir de reference (str). Por defecto: None -> El archivo de base de datos DIAMOND temporal se eliminará después de la alineación o se guardará en out si se proporciona out. -s --sensitivity Sensibilidad de la alineación (str). Por defecto: \"very-sensitive\" (muy sensible). Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Número de hilos de procesamiento utilizados (int). Por defecto: 1. -db --diamond_binary Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget. -o --out Ruta al archivo en el que se guardarán los resultados (str), p. ej. \"ruta/al/directorio\". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan. Banderas -u --uniprot Use esta bandera cuando sequence es un ID de Uniprot en lugar de una secuencia de aminoácidos. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget diamond » gget diamond 💎","id":"130","title":"gget diamond 💎"},"131":{"body":"# !!! Asegúrese de enumerar primero el argumento posicional aquí para que no se agregue como secuencia de referencia\ngget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS # Python\ngget.diamond([\"GGETISAWESQME\", \"ELVISISALIVE\", \"LQVEFRANKLIN\", \"PACHTERLABRQCKS\"], reference=[\"GGETISAWESQMEELVISISALIVELQVEFRANKLIN\", \"PACHTERLABRQCKS\"]) → Produce los resultados de la alineación en formato JSON (Terminal) o Dataframe/CSV: query_accession subject_accession identity_percentage query_seq_length subject_seq_length length mismatches gap_openings query_start query_end subject_start subject_end e-value bit_score Seq0 Seq0 100 13 37 13 0 0 1 13 1 13 2.82e-09 30.8 Seq2 Seq0 100 12 37 12 0 0 1 12 26 37 4.35e-08 27.7 Seq3 Seq1 100 15 15 15 0 0 1 15 1 15 2.01e-11 36.2 Màs ejemplos","breadcrumbs":"gget diamond » Ejemplo","id":"131","title":"Ejemplo"},"132":{"body":"Si utiliza gget diamond en una publicación, favor de citar los siguientes artículos: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176","breadcrumbs":"gget diamond » Citar","id":"132","title":"Citar"},"133":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Prediga localmente motivos lineales eucarióticos (ELMs) a partir de una secuencia de aminoácidos o UniProt Acc utilizando datos de la base de datos ELM . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Este módulo devuelve dos tipos de resultados (ver ejemplos). Los datos de ELM se pueden descargar y distribuir para uso no comercial de acuerdo con el acuerdo de licencia de software de ELM . Si utiliza gget elm en una publicación, favor de citar: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics , 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, et al. , The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research , Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 Antes de usar gget elm por primera vez, ejecute gget setup elm / gget.setup(\"elm\") una vez (consulte también gget setup ). Parámetro posicional sequence Secuencia de aminoácidos o Uniprot Acc (str). Al proporcionar una Uniprot Acc, use la bandera --uniprot (Python: uniprot=True). Parámetros optionales -s sensitivity Sensibilidad de la alineación DIAMOND (str). Por defecto: \"very-sensitive\" (muy sensible). Uno de los siguientes: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t threads Número de hilos de procesamiento utilizados en la alineación de secuencias con DIAMOND (int). Por defecto: 1. -bin diamond_binary Ruta al binario DIAMOND (str). Por defecto: None -> Utiliza el binario DIAMOND instalado automáticamente con gget. -o --out Ruta al archivo en el que se guardarán los resultados (str), p. ej. \"ruta/al/directorio\". Por defecto: salida estándar (STDOUT); los archivos temporales se eliminan. Banderas -u --uniprot Use esta bandera cuando sequence es una Uniprot Acc en lugar de una secuencia de aminoácidos. -e --expand Amplíe la información devuelta en el marco de datos de expresiones regulares para incluir los nombres de proteínas, los organismos y las referencias en las que se validó originalmente el motivo. -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True para producir los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para impedir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget elm » gget elm 🎭","id":"133","title":"gget elm 🎭"},"134":{"body":"Encuentre ELM en una secuencia de aminoácidos: gget setup elm # Descarga/actualiza la base de datos ELM local\ngget elm -o gget_elm_results LIAQSIGQASFV # Python\ngget.setup(“elm”) # Descarga/actualiza la base de datos ELM local\northolog_df, regex_df = gget.elm(\"LIAQSIGQASFV\") Encuentre ELM que proporcionen a una UniProt Acc: gget setup elm # Descarga/actualiza la base de datos ELM local\ngget elm -o gget_elm_results --uniprot Q02410 -e # Python\ngget.setup(“elm”) # Descarga/actualiza la base de datos ELM local\northolog_df, regex_df = gget.elm(\"Q02410\", uniprot=True, expand=True) → Produce dos resultados con información extensa sobre ELMs asociados con proteínas ortólogas y motivos encontrados en la secuencia de entrada directamente en función de sus expresiones regex: ortholog_df: Ortholog_UniProt_Acc ProteinName class_accession ELMIdentifier FunctionalSiteName Description Organism … Q02410 APBA1_HUMAN ELME000357 LIG_CaMK_CASK_1 CASK CaMK domain binding ligand motif Motif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2. Homo sapiens … Q02410 APBA1_HUMAN ELME000091 LIG_PDZ_Class_2 PDZ domain ligands The C-terminal class 2 PDZ-binding motif is classically represented by a pattern such as Homo sapiens … regex_df: Instance_accession ELMIdentifier FunctionalSiteName ELMType Description Instances (Matched Sequence) Organism … ELME000321 CLV_C14_Caspase3-7 Caspase cleavage motif CLV Caspase-3 and Caspase-7 cleavage site. ERSDG Mus musculus … ELME000102 CLV_NRD_NRD_1 NRD cleavage site CLV N-Arg dibasic convertase (NRD/Nardilysin) cleavage site. RRA Rattus norvegicus … ELME000100 CLV_PCSK_PC1ET2_1 PCSK cleavage site CLV NEC1/NEC2 cleavage site. KRD Mus musculus … ELME000146 CLV_PCSK_SKI1_1 PCSK cleavage site CLV Subtilisin/kexin isozyme-1 (SKI1) cleavage site. RLLTA Homo sapiens … ELME000231 DEG_APCC_DBOX_1 APCC-binding Destruction motifs DEG An RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent manner SRVKLNIVR Saccharomyces cerevisiae S288c … … … … … … … … … (Los motivos que aparecen en muchas especies diferentes pueden parecer repetidos, pero todas las filas deben ser únicas.) Màs ejemplos","breadcrumbs":"gget elm » Ejemplo","id":"134","title":"Ejemplo"},"135":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Las banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Realice un análisis de enriquecimiento de una lista de genes utilizando Enrichr . Produce: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional genes Lista de nombres cortos (símbolos) de los genes de interés para realizar el análisis de enriquecimiento, p. PHF14 RBM3 MSL1 PHF21A. Alternativamente: use la bandera --ensembl para ingresar IDs tipo Ensembl, p. ENSG00000106443 ENSG00000102317 ENSG00000188895. Otros parámetros requeridos -db --database Base de datos que será utilizada como referencia para el análisis de enriquecimiento. Admite cualquier base de datos enumerada aquí o uno de los siguientes accesos directos: 'pathway' (KEGG_2021_Human) 'transcription' (ChEA_2016) 'ontology' (GO_Biological_Process_2021) 'diseases_drugs' (GWAS_Catalog_2019) 'celltypes' (PanglaoDB_Augmented_2021) 'kinase_interactions' (KEA_2015) Parámetros opcionales -bkg_l --background_list Lista de nombres cortos (símbolos) de genes de 'background' (de fondo/control), p. NSUN3 POLRMT NLRX1. Alternativamente: usa la bandera --ensembl_background para ingresar IDs tipo Ensembl. -o --out Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. -ko --kegg_out Ruta al archivo png en el que se guardará la imágen de la vía de señalización celular KEGG, p. ej. ruta/al/directorio/KEGG.png. (Por defecto: None) -kr --kegg_rank Rango de la ruta KEGG que se va a trazar. (Por defecto: 1) figsize Solo para Python. (ancho, alto) de la visualización en pulgadas. (Por defecto: (10,10)) ax Solo para Python. Ingresa un objeto de ejes matplotlib para personalizar la visualización.(Por defecto: None) Banderas -e --ensembl Usa esta bandera si genes se ingresa como una lista de IDs tipo Ensembl. -e_b --ensembl_background Usa esta bandera si background_list se ingresa como una lista de IDs tipo Ensembl. -bkg --background Use un conjunto de 20,625 genes 'background' listados aquí . -csv --csv Solo para Terminal. Produce los resultados en formato CSV. Para Python, usa json=True produce los resultados en formato JSON. -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa. plot Solo para Python. plot=True provée la visualización de los primeros 15 resultados (por defecto: False).","breadcrumbs":"gget enrichr » gget enrichr 💰","id":"135","title":"gget enrichr 💰"},"136":{"body":"gget enrichr -db ontology ACE2 AGT AGTR1 # Python\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\"], database=\"ontology\", plot=True) → Produce vías/funciones celulares relacionadas con los genes ACE2, AGT y AGTR1 de la base de datos GO Biological Process 2021 . En Python, plot=True provee la visualización de resultados: alt text Use gget enrichr con una lista de genes 'background': # Aquí, primero ingresamos los genes de interés (parámetro posicional 'genes'), para que no se agreguen a la lista de genes 'background' detrás del parámetro '-bkgr_l'\ngget enrichr \\ PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \\ -db ChEA_2022 \\ -bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2 # Python\ngget.enrichr( genes = [ \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\", \"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\" ], database = \"ChEA_2022\", background_list = [ \"NSUN3\",\"POLRMT\",\"NLRX1\",\"SFXN5\",\"ZC3H12C\",\"SLC25A39\",\"ARSG\", \"DEFB29\",\"PCMTD2\",\"ACAA1A\",\"LRRC1\",\"2810432D09RIK\",\"SEPHS2\", \"SAC3D1\",\"TMLHE\",\"LOC623451\",\"TSR2\",\"PLEKHA7\",\"GYS2\",\"ARHGEF12\", \"HIBCH\",\"LYRM2\",\"ZBTB44\",\"ENTPD5\",\"RAB11FIP2\",\"LIPT1\", \"INTU\",\"ANXA13\",\"KLF12\",\"SAT2\",\"GAL3ST2\",\"VAMP8\",\"FKBPL\", \"AQP11\",\"TRAP1\",\"PMPCB\",\"TM7SF3\",\"RBM39\",\"BRI3\",\"KDR\",\"ZFP748\", \"NAP1L1\",\"DHRS1\",\"LRRC56\",\"WDR20A\",\"STXBP2\",\"KLF1\",\"UFC1\", \"CCDC16\",\"9230114K14RIK\",\"RWDD3\",\"2610528K11RIK\",\"ACO1\", \"CABLES1\", \"LOC100047214\",\"YARS2\",\"LYPLA1\",\"KALRN\",\"GYK\", \"ZFP787\",\"ZFP655\",\"RABEPK\",\"ZFP650\",\"4732466D17RIK\",\"EXOSC4\", \"WDR42A\",\"GPHN\",\"2610528J11RIK\",\"1110003E01RIK\",\"MDH1\",\"1200014M14RIK\", \"AW209491\",\"MUT\",\"1700123L14RIK\",\"2610036D13RIK\", \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\",\"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\"\"COX15\",\"TMEM30A\",\"NSMCE4A\",\"TM2D2\",\"RHBDD3\",\"ATXN2\",\"NFS1\", \"3110001I20RIK\",\"BC038156\",\"C330002I19RIK\",\"ZFYVE20\",\"POLI\",\"TOMM70A\", \"LOC100047782\",\"2410012H22RIK\",\"RILP\",\"A230062G08RIK\", \"PTTG1IP\",\"RAB1\",\"AFAP1L1\", \"LYRM5\",\"2310026E23RIK\", \"SLC7A6OS\",\"MAT2B\",\"4932438A13RIK\",\"LRRC8A\",\"SMO\",\"NUPL2\" ], plot=True\n) → Provée factores de transcripción relacionados a los genes de interés y controlados con la lista de genes background de la base de datos ChEA 2022 . En Python, plot=True permite la visualización de resultados: alt text Genere una imagen de la vía de señalización de células KEGG con los genes del análisis de enriquecimiento resaltados: Esta función está disponible gracias a un PR de Noriaki Sato . gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1 # Python\ngget.enrichr([\"ZBP1\", \"IRF3\", \"RIPK1\"], database=\"pathway\", kegg_out=\"kegg.png\", kegg_rank=1) → Además de los resultados estándar gget enrichr, el argumento kegg_out guarda una imagen con los genes del análisis de enriquecimiento resaltados guardado como kegg.png: kegg El siguiente ejemplo fue enviado por Dylan Lawless a través de un PR (con ajustes de Laura Luebbert ): Use gget enrichr en R y cree unq visualización similar usando ggplot . TENGA EN CUENTA el cambio de ejes en comparación con la visualización en Python. system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") # Perform enrichment analysis on a list of genes\ndf <- gget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\"), database = \"ontology\") # Count number of overlapping genes\ndf$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric() # Only keep the top 15 results\ndf <- df[1:15, ] # Plot\nlibrary(ggplot2) df |> ggplot() + geom_bar(aes( x = -log10(adj_p_val), y = reorder(path_name, -adj_p_val) ), stat = \"identity\", fill = \"lightgrey\", width = 0.5, color = \"black\") + geom_text( aes( y = path_name, x = (-log10(adj_p_val)), label = overlapping_genes_count ), nudge_x = 0.75, show.legend = NA, color = \"red\" ) + geom_text( aes( y = Inf, x = Inf, hjust = 1, vjust = 1, label = \"# of overlapping genes\" ), show.legend = NA, color = \"red\" ) + geom_vline(linetype = \"dotted\", linewidth = 1, xintercept = -log10(0.05)) + ylab(\"Pathway name\") + xlab(\"-log10(adjusted P value)\") Más ejemplos","breadcrumbs":"gget enrichr » Ejemplo","id":"136","title":"Ejemplo"},"137":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Genera texto en lenguaje natural basado en mensaje de entrada. gget gpt use la API 'openai.ChatCompletion.create' de OpenAI . Este módulo, incluido su código, documentación y pruebas unitarias, fue escrito en parte por Chat-GTP3 de OpenAI. TENGA EN CUENTA: Las llamadas a la API de OpenAI solo son 'gratuitas' durante los primeros tres meses después de generar su cuenta de OpenAI (OpenAI proporciona un crédito de $5 que vence). Puede definir un límite de facturación mensual estricto (por ejemplo, $1) aquí . Vea sus precios y preguntas frecuentes aquí . Obtenga su clave API de OpenAI aquí . Regresa: El texto generado (str). Antes de usar gget gpt por primera vez, corre gget setup gpt / gget.setup(\"gpt\") (ver también gget setup ). Parámetros posicionales prompt Mensaje de entrada basado en el cual generar texto (str). api_key Su clave API de OpenAI (str) ( obtenga su clave API ). Parámetros optionales -m --model El nombre del algoritmo GPT que se usará para generar el texto (str). Por defecto: \"gpt-3.5-turbo\". See https://platform.openai.com/docs/models/gpt-4 for more information on the available models. -temp --temperature Valor entre 0 y 2 que controla el nivel de aleatoriedad y creatividad en el texto generado (float). Los valores más altos resultan en un texto más creativo y variado. Por defecto: 1. -tp --top_p Controla la diversidad del texto generado como alternativa al muestreo con --temperature (float). Los valores más altos resultan en un texto más diverso e inesperado. Por defecto: 1. Tenga en cuenta que OpenAI recomienda modificar --top_p o el parámetro --temperature, pero no ambas. -s --stop Una secuencia de tokens para marcar el final del texto generado (str). Por defecto: None. -mt --max_tokens Controla la longitud máxima del texto generado, en tokens (int). Por defecto: 200. -pp --presence_penalty Número entre -2.0 y 2.0. Los valores más altos aumentan la probabilidad de que el modelo hable sobre temas nuevos (float). Por defecto: 0. -fp --frequency_penalty Número entre -2.0 y 2.0. Los valores más altos reducen la probabilidad de que el modelo repita la misma línea palabra por palabra (float). Por defecto: 0. -lb --logit_bias Un diccionario que especifica un sesgo hacia ciertos tokens en el texto generado (dict). Por defecto: None. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.txt. Por defecto: salida estándar (STDOUT).","breadcrumbs":"gget gpt » gget gpt 💬","id":"137","title":"gget gpt 💬"},"138":{"body":"gget gpt \"Cómo estás hoy GPT?\" su_clave_api # Python\nprint(gget.gpt(\"Cómo estás hoy GPT?\", \"su_clave_api\"))","breadcrumbs":"gget gpt » Por ejemplo","id":"138","title":"Por ejemplo"},"139":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga información detallada sobre genes y transcripciones de Ensembl , UniProt y NCBI utilizando sus IDs del tipo Ensembl. Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional ens_ids Uno o más ID del tipo Ensembl. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -n --ncbi DESACTIVA los resultados de NCBI . Para Python: ncbi=False evita la incluida de datos de NCBI (por defecto: True). -u --uniprot DESACTIVA los resultados de UniProt . Para Python: uniprot=False evita la incluida de datos de UniProt (por defecto: True). -pdb --pdb INCLUYE PDB IDs en los resultados (podría aumentar el tiempo de ejecución). Para Python: pdb=True incluye IDs de PDB en los resultados (por defecto: False). -csv --csv Solo para la Terminal. Regresa los resultados en formato CSV. Para Python, usa json=True para regresar los resultados en formato JSON. -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget info » gget info 💡","id":"139","title":"gget info 💡"},"14":{"body":"If you use gget archs4 in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519","breadcrumbs":"gget archs4 » References","id":"14","title":"References"},"140":{"body":"gget info ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.info([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Regresa información detallada sobre cada ID de Ensembl ingresada: uniprot_id ncbi_gene_id primary_gene_name synonyms protein_names ensembl_description uniprot_description ncbi_description biotype canonical_transcript ... ENSG00000034713 P60520 11345 GABARAPL2 [ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2] Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)... GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ... Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein... protein_coding ENST00000037243.7 ... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ... More examples","breadcrumbs":"gget info » Por ejemplo","id":"140","title":"Por ejemplo"},"141":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Alinea múltiples secuencias de nucleótidos o aminoácidos usando el algoritmo Muscle5 . Regresa: Salida estándar (STDOUT) en formato ClustalW o archivo de tipo 'aligned FASTA' (.afa). Parámetro posicional fasta Lista de secuencias o ruta al archivo FASTA o .txt que contiene las secuencias de nucleótidos o aminoácidos que se van a alinear. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.afa. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -s5 --super5 Alinea las secuencies usando el algoritmo Super5 en lugar del algoritmo Parallel Perturbed Probcons (PPP) para disminuir el tiempo y la memoria usada durante la corrida. Use para ingresos grandes (unos cientos secuencias). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget muscle » gget muscle 🦾","id":"141","title":"gget muscle 🦾"},"142":{"body":"gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Python\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"]) gget muscle fasta.fa # Python\ngget.muscle(\"fasta.fa\") → Regresa las secuencias alineadas con coloración ClustalW. (Para devolver un archivo FASTA alineado (.afa), use el argumento --out (o save=True en Python).) En este ejemplo, el archivo 'fasta.fa' incluye varias secuencias para alineación (por ejemplo, isoformas devueltas desde gget seq). alt text También puede ver archivos FASTA alineados devueltos por gget.muscle usando programas como alv : # Python\n!pip install biopython\n!pip install alv\nfrom Bio import AlignIO\nimport alv gget.muscle(\"fasta.fa\", out=\"fasta_aligned.afa\")\nmsa = AlignIO.read(\"fasta_aligned.afa\", \"fasta\")\nalv.view(msa) More examples","breadcrumbs":"gget muscle » Por ejemplo","id":"142","title":"Por ejemplo"},"143":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Recibe secuencias de nucleótidos y mutaciones (en anotación de mutación estándar ) y devuelve versiones mutadas de las secuencias según las mutaciones proporcionadas. Formato de devolución: Guarda las secuencias mutadas en formato FASTA (o devuelve una lista que contiene las secuencias mutadas si out=None). Este módulo fue coescrito por Joseph Rich . Parámetro posicional sequences Ruta al archivo FASTA que contiene las secuencias a mutar, por ejemplo, 'path/to/seqs.fa'. Los identificadores de secuencia que siguen al carácter '>' deben corresponder a los identificadores en la columna seq_ID de mutations. NOTA: Solo se utilizará la cadena que sigue al '>' hasta el primer espacio o punto como identificador de secuencia. -> Se ignorarán los números de versión de los IDs de Ensembl. Ejemplo de formato del archivo FASTA: >seq1 (o ENSG00000106443) ACTGCGATAGACT >seq2 AGATCGCTAG Alternativamente: Proporcione secuencia(s) como una cadena o lista, por ejemplo, 'AGCTAGCT'. Otros parámetros requeridos -m --mutations Ruta al archivo csv o tsv (por ejemplo, 'path/to/mutations.csv') o marco de datos (objeto DataFrame) que contiene información sobre las mutaciones en el siguiente formato (la columna 'notas' no es necesaria): mutation mut_ID seq_ID notas c.2C>T mut1 seq1 -> Aplicar la mutación 1 a la secuencia 1 c.9_13inv mut2 seq2 -> Aplicar la mutación 2 a la secuencia 2 c.9_13inv mut2 seq4 -> Aplicar la mutación 2 a la secuencia 4 c.9_13delinsAAT mut3 seq4 -> Aplicar la mutación 3 a la secuencia 4 ... ... ... 'mutation' = Columna que contiene las mutaciones a realizar, escritas en anotación de mutación estándar 'mut_ID' = Columna que contiene el identificador de cada mutación 'seq_ID' = Columna que contiene los identificadores de las secuencias a mutar (deben corresponder a la cadena que sigue al carácter '>' en el archivo FASTA de 'sequences'; NO incluir espacios ni puntos) Alternativamente: Mutación(es) de entrada como una cadena o lista, por ejemplo, 'c.2C>T'. Si se proporciona una lista, el número de mutaciones debe ser igual al número de secuencias de entrada. Para uso desde el terminal (bash): Encierre las anotaciones de mutación individuales entre comillas para evitar errores. Parámetros opcionales -k --k Longitud de las secuencias que flanquean la mutación. Por defecto: 30. Si k > longitud total de la secuencia, se mantendrá toda la secuencia. -mc --mut_column Nombre de la columna que contiene las mutaciones a realizar en mutations. Por defecto: 'mutation'. -mic --mut_id_column Nombre de la columna que contiene los IDs de cada mutación en mutations. Por defecto: 'mut_ID'. -sic --seq_id_column Nombre de la columna que contiene los IDs de las secuencias a mutar en mutations. Por defecto: 'seq_ID'. -o --out Ruta al archivo FASTA de salida que contiene las secuencias mutadas, por ejemplo, 'path/to/output_fasta.fa'. Por defecto: None -> devuelve una lista de las secuencias mutadas a la salida estándar. Los identificadores (después del '>') de las secuencias mutadas en el FASTA de salida serán '>[seq_ID]_[mut_ID]'. Flags -q --quiet Solo para Terminal. Impide la información de progreso de ser exhibida durante la ejecución del programa. Para Python, usa verbose=False para imipidir la información de progreso de ser exhibida durante la ejecución del programa.","breadcrumbs":"gget mutate » gget mutate 🧟","id":"143","title":"gget mutate 🧟"},"144":{"body":"gget mutate ATCGCTAAGCT -m 'c.4G>T' # Python\ngget.mutate(\"ATCGCTAAGCT\", \"c.4G>T\") → Devuelve ATCTCTAAGCT. Lista de secuencias con una mutación para cada secuencia proporcionada en una lista: gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], [\"c.4G>T\", \"c.1_3inv\"], out=\"mut_fasta.fa\") → Guarda el archivo 'mut_fasta.fa' que contiene: >seq1_mut1 ATCTCTAAGCT >seq2_mut2 GATCTA Una mutación aplicada a varias secuencias con k ajustado: gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3 # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], \"c.1_3inv\", k=3) → Devuelve ['CTAGCT', 'GATCTA'].","breadcrumbs":"gget mutate » Ejemplos","id":"144","title":"Ejemplos"},"145":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga la estructura o los metadatos de una proteína usando data de RCSB Protein Data Bank (PDB) . Regresa: El archivo 'pdb' se regresa en formato PDB. Todos los demás datos se regresan en formato JSON. Parámetro posicional pdb_id ID del tipo PDB, p. ej. '7S7U'. Parámetros optionales -r --resource Define el tipo de información a regresar. Uno de los siguientes: 'pdb': Regresa la estructura de la proteína en formato PDB (regresa por defecto). 'entry': Regresa información sobre las estructuras PDB en el nivel superior de la organización de datos PDB jerárquicos. 'pubmed': Regresa anotaciones de PubMed (datos integrados de PubMed) para la cita principal de un ID PDB. 'assembly': Regresa información sobre estructuras PDB en el nivel de estructura cuaternaria. 'branched_entity': Regresa la descripción de la entidad ramificada (defina el ID de la entidad como identifier). 'nonpolymer_entity': Regresa datos de entidades no poliméricas (defina el ID de la entidad como identifier). 'polymer_entity': Regresa datos de entidades poliméricas (defina el ID de la entidad como identifier). 'uniprot': Regresa anotaciones UniProt para una entidad macromolecular (defina el ID de la entidad como identifier). 'branched_entity_instance': Regresa la descripción de instancia de entidad ramificada (defina el ID de cadena como identifier). 'polymer_entity_instance': Regresa datos de instancia de entidad polimérica (también conocida como cadena) (defina el ID de cadena como identifier). 'nonpolymer_entity_instance': Regresa datos de instancia de entidad no polimérica (defina el ID de cadena como identifier). -i --identifier Este parámetro se puede utilizar para definir el ID de ensamblaje, entidad o cadena (po defecto: None). Los IDs de ensamblaje/entidad son números (p. ej., 1) y los IDs de cadena son letras (p. ej., 'A'). -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/7S7U.pdb (o 7S7U_entry.json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual.","breadcrumbs":"gget pdb » gget pdb 🔮","id":"145","title":"gget pdb 🔮"},"146":{"body":"gget pdb 7S7U -o 7S7U.pdb # Python\ngget.pdb(\"7S7U\", save=True) → Guarda la estructura de 7S7U en formato PDB como '7S7U.pdb' en el directorio de trabajo actual. Encuentre estructuras cristalinas de PDB para un análisis comparativo de la estructura de proteínas: # Encuentre IDs de PDB asociados con un ID de Ensembl\ngget info ENSG00000130234 # Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,\n# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB: # Obtenga la secuencia de aminoácidos\ngget seq --translate ENSG00000130234 -o gget_seq_results.fa # BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB\ngget blast --database pdbaa gget_seq_results.fa # Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo\ngget pdb 7DQA -o 7DQA.pdb\ngget pdb 7CT5 -o 7CT5.pdb # Encuentre IDs de PDB asociados con un ID de Ensembl\ngget.info(\"ENSG00000130234\") # Alternativamente: como que muchas entradas en el PDB no tienen ID de Ensembl vinculados,\n# es probable que encuentre más entradas de PDB BLASTing la secuencia contra el PDB: # Obtenga la secuencia de aminoácidos\ngget.seq(\"ENSG00000130234\", translate=True, save=True) # BLAST la secuencia de aminoácidos para encontrar estructuras similares en el PDB\ngget.blast(\"gget_seq_results.fa\", database=\"pdbaa\") # Obtenga archivos PDB de los IDs de PDB regresados por gget blast para un análisis comparativo\ngget.pdb(\"7DQA\", save=True)\ngget.pdb(\"7CT5\", save=True) → Este caso de uso ejemplifica cómo encontrar archivos PDB para un análisis comparativo de la estructura de las proteínas asociado con IDs de Ensembl o secuencias de aminoácidos. Los archivos PDB obtenidos también se pueden comparar con las estructuras predichas generadas por gget alphafold . Los archivos PDB se pueden ver de forma interactiva en 3D aquí , o usando programas como PyMOL o Blender . Múltiple archivos PDB se pueden visualizar para comparación aquí . Más ejemplos","breadcrumbs":"gget pdb » Por ejemplo","id":"146","title":"Por ejemplo"},"147":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga enlaces FTP y sus respectivos metadatos (o use la bandera ftp para regresar solo los enlaces) para referenciar genomas y anotaciones de Ensembl . Regresa: Resultados en formato JSON. Parámetro posicional species La especie por la cual que se buscará los FTP en el formato género_especies, p. ej. homo_sapiens. Nota: No se requiere cuando se llama a la bandera --list_species. Accesos directos: 'human', 'mouse', 'human_grch37' (accede al ensamblaje del genoma GRCh37) Parámetros optionales -w --which Define qué resultados devolver. Por defecto: 'all' -> Regresa todos los resultados disponibles. Las entradas posibles son uno solo o una combinación de las siguientes (como lista separada por comas): 'gtf' - Regresa la anotación (GTF). 'cdna' - Regresa el transcriptoma (cDNA). 'dna' - Regresa el genoma (DNA). 'cds' - Regresa las secuencias codificantes correspondientes a los genes Ensembl. (No contiene UTR ni secuencia intrónica). 'cdrna' - Regresa secuencias de transcripción correspondientes a genes de ARN no codificantes (ncRNA). 'pep' - Regresa las traducciones de proteínas de los genes Ensembl. -r --release Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Default: latest Ensembl release. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.json. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -l --list_species Enumera todas las especies disponibles. (Para Python: combina con species=None.) -ftp --ftp Regresa solo los enlaces FTP solicitados. -d --download Solo para Terminal. Descarga los FTP solicitados al directorio actual (requiere curl para ser instalado). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget ref » gget ref 📖","id":"147","title":"gget ref 📖"},"148":{"body":"Use gget ref en combinación con kallisto | bustools para construir un índice de referencia: kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens) → kb ref crea un índice de referencia utilizando los últimos archivos de ADN y GTF de especies Homo sapiens que le ha pasado gget ref. Enumere todos los genomas disponibles de la versión 103 de Ensembl: gget ref --list_species -r 103 # Python\ngget.ref(species=None, list_species=True, release=103) → Regresa una lista con todos los genomas disponibles (gget ref verifica si GTF y FASTA están disponibles) de la versión 103 de Ensembl. (Si no se especifica ninguna versión, gget ref siempre devolverá información de la última versión de Ensembl). Obtenga la referencia del genoma para una especie específica: gget ref -w gtf,dna homo_sapiens # Python\ngget.ref(\"homo_sapiens\", which=[\"gtf\", \"dna\"]) → Regresa un JSON con los últimos FTP humanos GTF y FASTA, y sus respectivos metadatos, en el formato: { \"homo_sapiens\": { \"annotation_gtf\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz\", \"ensembl_release\": 106, \"release_date\": \"28-Feb-2022\", \"release_time\": \"23:27\", \"bytes\": \"51379459\" }, \"genome_dna\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz\", \"ensembl_release\": 106, \"release_date\": \"21-Feb-2022\", \"release_time\": \"09:35\", \"bytes\": \"881211416\" } }\n} Más ejemplos","breadcrumbs":"gget ref » Por ejemplo","id":"148","title":"Por ejemplo"},"149":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga genes y transcripciones de Ensembl usando términos de búsqueda de forma libre. Los resultados se comparan según las secciones \"nombre del gen\" y \"descripción\" en la base de datos de Ensembl. gget versión >= 0.27.9 también incluye resultados que coinciden con la sección \"sinónimo\" de Ensembl. Regresa: Resultados en formato JSON (Terminal) o Dataframe/CSV (Python). Parámetro posicional searchwords Una o más palabras de búsqueda de forma libre, p. ej. gaba nmda. (Nota: la búsqueda no distingue entre mayúsculas y minúsculas). Otros parámetros requeridos -s --species Especies o base de datos a buscar. Una especie se puede pasar en el formato 'género_especie', p. ej. 'homo_sapiens' o 'arabidopsis_thaliana'. Para pasar una base de datos específica, pase el nombre de la base de datos CORE, p. ej. 'mus_musculus_dba2j_core_105_1'. Todas las bases de datos disponibles para cada versión de Ensembl se pueden encontrar aquí: Vertebrados: http://ftp.ensembl.org/pub/current/mysql/ Invertebrados: http://ftp.ensemblgenomes.org/pub/current/ + selecciona reino animal + selecciona mysql/ Accesos directos: 'human', 'mouse' Parámetros optionales -r --release Define el número de versión de Ensembl desde el que se obtienen los archivos, p. ej. 104. Por defecto: None -> se usa la última versión de Ensembl. Nota: No se aplica a las especies invertebrados (en su lugar, puede pasar una base de datos de una especies específica (incluyen un número de versión) al argumento species). Para especies de invertebrados, Ensembl solo almacena bases de datos de 10 versiones anteriores a la versión actual. Este argumento se sobrescribe si se pasa una base de datos específica (que incluye un número de publicación) al argumento species. -t --id_type 'gene' (esto se use por defecto) o 'transcript' Regesa genes o transcripciones, respectivamente. -ao --andor 'or' (esto se use por defecto) o 'and' 'or' ('o'): Regresa todos los genes que INCLUYEN AL MENOS UNA de las palabras de búsqueda en su nombre/descripción. 'and' ('y'): Regresa solo los genes que INCLUYEN TODAS las palabras de búsqueda en su nombre/descripción. -l --limit Limita el número de resultados de búsqueda, p. ej. 10. Por defecto: None. -o --out Ruta al archivo en el que se guardarán los resultados, p. ej. ruta/al/directorio/resultados.csv (o .json). Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -csv --csv Solo para la Terminal. Regresa los resultados en formato CSV. Para Python, usa json=True para regresar los resultados en formato JSON. -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida. wrap_text Solo para Python. wrap_text=True muestra los resultados con texto envuelto para facilitar la lectura (por defecto: False).","breadcrumbs":"gget search » gget search 🔎","id":"149","title":"gget search 🔎"},"15":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch orthology and gene expression data from Bgee using Ensembl IDs. Return format: JSON/CSV (command-line) or data frame (Python). If you are specifically interested in human gene expression data, consider using gget opentargets or gget archs4 instead. gget bgee has less data, but supports more species. This module was written by Sam Wagenaar . Positional argument ens_id Ensembl gene ID, e.g. ENSG00000169194 or ENSSSCG00000014725. Required arguments -t --type Type of data to fetch. Options: orthologs, expression. Optional arguments -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Flags -csv --csv Command-line only. Returns the output in CSV format, instead of JSON format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget bgee » gget bgee 🐝","id":"15","title":"gget bgee 🐝"},"150":{"body":"gget search -s human gaba gamma-aminobutyric # Python\ngget.search([\"gaba\", \"gamma-aminobutyric\"], \"homo_sapiens\") → Regresa todos los genes que contienen al menos una de las palabras de búsqueda en su nombre o descripción de Ensembl/referencia externa: ensembl_id gene_name ensembl_description ext_ref_description biotype url ENSG00000034713 GABARAPL2 GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] GABA type A receptor associated protein like 2 protein_coding https://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713 . . . . . . . . . . . . . . . . . . Más ejemplos","breadcrumbs":"gget search » Por ejemplo","id":"150","title":"Por ejemplo"},"151":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Función para instalar/descargar dependencias de terceros para un módulo de gget. Parámetro posicional module Módulo gget para el que se deben instalar las dependencias.","breadcrumbs":"gget setup » gget setup 🔧","id":"151","title":"gget setup 🔧"},"152":{"body":"gget setup alphafold # Python\ngget.setup(\"alphafold\") → Instala todas las dependencias de terceros (modificadas) y descarga los parámetros del algoritmo (~4 GB) necesarios para ejecutar gget alphafold .","breadcrumbs":"gget setup » Por ejemplo","id":"152","title":"Por ejemplo"},"153":{"body":"Parámetros de Python són iguales a los parámetros largos (--parámetro) de Terminal, si no especificado de otra manera. Banderas son parámetros de verdadero o falso (True/False) en Python. El manuál para cualquier modulo de gget se puede llamar desde la Terminal con la bandera -h --help. Obtenga la(s) secuencia(s) nucleótidos o aminoácidos de un gen (y todas sus isoformas) con su ID de Ensembl. Regresa: Archivo de tipo FASTA. Parámetro posicional ens_ids One or more Ensembl IDs. Parámetros optionales -o --out Ruta al archivo en el que se guardarán los resultados, p. ruta/al/directorio/resultados.fa. Por defecto: salida estándar (STDOUT). Para Python, usa save=True para guardar los resultados en el directorio de trabajo actual. Banderas -t --translate Regresa secuencias de aminoácidos (en lugar de nucleótidos). Las secuencias de nucleótidos se obtienen de Ensembl . Las secuencias de aminoácidos se obtienen de UniProt . -iso --isoforms Regresa las secuencias de todas las transcripciones conocidas. (Solo para IDs de genes). -q --quiet Solo para la Terminal. Impide la informacion de progreso de ser exhibida durante la corrida. Para Python, usa verbose=False para imipidir la informacion de progreso de ser exhibida durante la corrida.","breadcrumbs":"gget seq » gget seq 🧬","id":"153","title":"gget seq 🧬"},"154":{"body":"gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.seq([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Regresa las secuencias de nucleótidos de ENSG00000034713, ENSG00000104853, y ENSG00000170296 en formato FASTA. gget seq -t -iso ENSG00000034713 # Python\ngget.seq(\"ENSG00000034713\", translate=True, isoforms=True) → Regresa las secuencias de aminoácidos de todas las transcripciones conocidas de ENSG00000034713 en formato FASTA. Más ejemplos","breadcrumbs":"gget seq » Por ejemplo","id":"154","title":"Por ejemplo"},"155":{"body":"¡Gracias por invertir su tiempo en contribuir con nuestro proyecto! Cualquier contribución que hagas se verá reflejada en el repositorio de GitHub de gget . ✨ Lea nuestro Código de conducta para mantener nuestra comunidad accesible y respetable. En esta guía, obtendrá una descripción general del flujo de trabajo de contribución desde la creación de un GitHub Issue (asunto) o la creación de un GitHub Pull Request (PR) hasta la revisión y fusión de un PR.","breadcrumbs":"Guía de contribución » Bienvenido a la guía de contribución de gget","id":"155","title":"Bienvenido a la guía de contribución de gget"},"156":{"body":"","breadcrumbs":"Guía de contribución » Issues (asuntos)","id":"156","title":"Issues (asuntos)"},"157":{"body":"Si detecta un problema con gget o tiene una idea para una nueva función, comproba si ya existe un Issue para este problema/sugerencia . Si no existe un Issue relacionado, puede abrir un nuevo Issue utilizando el formulario correspondiente .","breadcrumbs":"Guía de contribución » Crear un nuevo Issue","id":"157","title":"Crear un nuevo Issue"},"158":{"body":"Explore nuestros Issues existentes para encontrar uno que le interese. Puede restringir la búsqueda utilizando \"labels\" como filtros. Si encuentra un Issue en el que desea trabajar, puede abrir un PR con una solución.","breadcrumbs":"Guía de contribución » Resolver un Issue","id":"158","title":"Resolver un Issue"},"159":{"body":"","breadcrumbs":"Guía de contribución » Contribuir a través de Pull Requests (PRs)","id":"159","title":"Contribuir a través de Pull Requests (PRs)"},"16":{"body":"Get orthologs for a gene gget bgee ENSSSCG00000014725 -t orthologs import gget\ngget.bgee(\"ENSSSCG00000014725\", type=\"orthologs\") → Returns orthologs for the gene with Ensembl ID ENSSSCG00000014725. gene_id gene_name species_id genus species 734881 hbb1 8355 Xenopus laevis ENSFCAG00000038029 LOC101098159 9685 Felis catus ENSBTAG00000047356 LOC107131172 9913 Bos taurus ENSOARG00000019163 LOC101105437 9940 Ovis aries ENSXETG00000025667 hbg1 8364 Xenopus tropicalis ... ... ... ... ... Get gene expression data for a gene gget bgee ENSSSCG00000014725 -t expression import gget\ngget.bgee(\"ENSSSCG00000014725\", type=\"expression\") → Returns gene expression data for the gene with Ensembl ID ENSSSCG00000014725. anat_entity_id anat_entity_name score score_confidence expression_state UBERON:0000178 blood 99.98 high expressed UBERON:0002106 spleen 99.96 high expressed UBERON:0002190 subcutaneous adipose tissue 99.70 high expressed UBERON:0005316 endocardial endothelium 99.61 high expressed UBERON:0002107 liver 99.27 high expressed ... ... ... ... ... More examples","breadcrumbs":"gget bgee » Examples","id":"16","title":"Examples"},"160":{"body":"Bifurcar (\"fork\") el repositorio de GitHub de gget . Usando GitHub Desktop: \"Getting started with GitHub Desktop\" lo guiará a través de la configuración de Desktop. Una vez que GitHub Desktop está configurado, puede usarlo para bifurcar el repositorio ! Usando la Terminal: Bifurca el repositorio para que pueda realizar sus cambios sin afectando el proyecto original hasta que esté listo para fusionarlos. ¡Cree una rama de trabajo y comience con sus cambios!","breadcrumbs":"Guía de contribución » Empezar","id":"160","title":"Empezar"},"161":{"body":"Confirme sus cambios una vez que esté satisfecho con ellos.","breadcrumbs":"Guía de contribución » Confirma sus actualizaciones","id":"161","title":"Confirma sus actualizaciones"},"162":{"body":"Revise el contenido para mantener precisión técnica. Edite los cambios/comentarios de gramática, ortografía y adherencia al estilo general del código de gget existente. Formatee su código usando \"black\" . Asegúrese de que las pruebas unitarias pasen: Las dependencias de desarrollador se pueden instalar con pip install -r dev-requirements.txt Ejecute pruebas unitarias existentes desde la carpeta de gget con coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* Agregue nuevas pruebas unitarias si corresponde: Los parámetros y los resultados esperados se pueden encontrar en archivos json en ./tests/fixtures/ Las pruebas unitarias se pueden agregar a ./tests/test_*.py y serán detectado automáticamente Asegúrese de que las ediciones sean compatibles tanto con Python como con la Terminal Los parámetros para la Terminal se definen en ./gget/main.py Agregue módulos/argumentos nuevos a la documentación, si corresponde: El manual de cada módulo se puede editar/añadir como ./docs/src/*.md Si tiene alguna pregunta, no dude en iniciar una discusión o crear un Issue como se describe anteriormente.","breadcrumbs":"Guía de contribución » ‼️ Auto-revisa lo siguiente antes de crear un PR ‼️","id":"162","title":"‼️ Auto-revisa lo siguiente antes de crear un PR ‼️"},"163":{"body":"Cuando haya terminado con los cambios, cree un Pull Request , también conocido como \"PR\". ‼️ Realice todos los PRs contra la rama dev del repositorio gget No olvide de vincular su PR con un Issue si estás resolviendo uno. Habilite la casilla de verificación para permitir ediciones del mantenedor para que la rama se pueda actualizar para una fusión. Si se encuentra con problemas durante la fusión, consulte este tutorial de git para ayudarlo a resolver conflictos de fusión y otros problemas. Una vez que envíe su PR, un miembro del equipo gget revisará su propuesta. Podemos hacer preguntas o solicitar información adicional.","breadcrumbs":"Guía de contribución » Crear un Pull Request (PR)","id":"163","title":"Crear un Pull Request (PR)"},"164":{"body":"¡Felicidades! 🎉 El equipo de gget te lo agradece. ✨ Una vez que su PR se fusione, sus contribuciones serán visibles públicamente en el repositorio de gget .","breadcrumbs":"Guía de contribución » ¡Su PR está fusionado!","id":"164","title":"¡Su PR está fusionado!"},"165":{"body":"","breadcrumbs":"Codigo de conducto » Código de Conducta convenido para Contribuyentes","id":"165","title":"Código de Conducta convenido para Contribuyentes"},"166":{"body":"Nosotros, como miembros, contribuyentes y administradores nos comprometemos a hacer de la participación en nuestra comunidad sea una experiencia libre de acoso para todo el mundo, independientemente de la edad, dimensión corporal, discapacidad visible o invisible, etnicidad, características sexuales, identidad y expresión de género, nivel de experiencia, educación, nivel socio-económico, nacionalidad, apariencia personal, raza, casta, color, religión, o identidad u orientación sexual. Nos comprometemos a actuar e interactuar de maneras que contribuyan a una comunidad abierta, acogedora, diversa, inclusiva y sana.","breadcrumbs":"Codigo de conducto » Nuestro compromiso","id":"166","title":"Nuestro compromiso"},"167":{"body":"Ejemplos de comportamientos que contribuyen a crear un ambiente positivo para nuestra comunidad: Demostrar empatía y amabilidad ante otras personas Respeto a diferentes opiniones, puntos de vista y experiencias Dar y aceptar adecuadamente retroalimentación constructiva Aceptar la responsabilidad y disculparse ante quienes se vean afectados por nuestros errores, aprendiendo de la experiencia Centrarse en lo que sea mejor no sólo para nosotros como individuos, sino para la comunidad en general Ejemplos de comportamiento inaceptable: El uso de lenguaje o imágenes sexualizadas, y aproximaciones o atenciones sexuales de cualquier tipo Comentarios despectivos ( trolling ), insultantes o derogatorios, y ataques personales o políticos El acoso en público o privado Publicar información privada de otras personas, tales como direcciones físicas o de correo electrónico, sin su permiso explícito Otras conductas que puedan ser razonablemente consideradas como inapropiadas en un entorno profesional","breadcrumbs":"Codigo de conducto » Nuestros estándares","id":"167","title":"Nuestros estándares"},"168":{"body":"Los administradores de la comunidad son responsables de aclarar y hacer cumplir nuestros estándares de comportamiento aceptable y tomarán acciones apropiadas y correctivas de forma justa en respuesta a cualquier comportamiento que consideren inapropiado, amenazante, ofensivo o dañino. Los administradores de la comunidad tendrán el derecho y la responsabilidad de eliminar, editar o rechazar comentarios, commits , código, ediciones de páginas de wiki, issues y otras contribuciones que no se alineen con este Código de Conducta, y comunicarán las razones para sus decisiones de moderación cuando sea apropiado.","breadcrumbs":"Codigo de conducto » Aplicación de las responsabilidades","id":"168","title":"Aplicación de las responsabilidades"},"169":{"body":"Este código de conducta aplica tanto a espacios del proyecto como a espacios públicos donde un individuo esté en representación del proyecto o comunidad. Ejemplos de esto incluyen el uso de la cuenta oficial de correo electrónico, publicaciones a través de las redes sociales oficiales, o presentaciones con personas designadas en eventos en línea o no.","breadcrumbs":"Codigo de conducto » Alcance","id":"169","title":"Alcance"},"17":{"body":"If you use gget bgee in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793","breadcrumbs":"gget bgee » References","id":"17","title":"References"},"170":{"body":"Instancias de comportamiento abusivo, acosador o inaceptable de otro modo podrán ser reportadas a los administradores de la comunidad responsables del cumplimiento a través de lpachter@caltech.edu. Todas las quejas serán evaluadas e investigadas de una manera puntual y justa. Todos los administradores de la comunidad están obligados a respetar la privacidad y la seguridad de quienes reporten incidentes.","breadcrumbs":"Codigo de conducto » Aplicación","id":"170","title":"Aplicación"},"171":{"body":"Los administradores de la comunidad seguirán estas Guías de Impacto en la Comunidad para determinar las consecuencias de cualquier acción que juzguen como un incumplimiento de este Código de Conducta:","breadcrumbs":"Codigo de conducto » Guías de Aplicación","id":"171","title":"Guías de Aplicación"},"172":{"body":"Impacto en la Comunidad : El uso de lenguaje inapropiado u otro comportamiento considerado no profesional o no acogedor en la comunidad. Consecuencia : Un aviso escrito y privado por parte de los administradores de la comunidad, proporcionando claridad alrededor de la naturaleza de este incumplimiento y una explicación de por qué el comportamiento es inaceptable. Una disculpa pública podría ser solicitada.","breadcrumbs":"Codigo de conducto » 1. Corrección","id":"172","title":"1. Corrección"},"173":{"body":"Impacto en la Comunidad : Un incumplimiento causado por un único incidente o por una cadena de acciones. Consecuencia : Un aviso con consecuencias por comportamiento prolongado. No se interactúa con las personas involucradas, incluyendo interacción no solicitada con quienes se encuentran aplicando el Código de Conducta, por un periodo especificado de tiempo. Esto incluye evitar las interacciones en espacios de la comunidad, así como a través de canales externos como las redes sociales. Incumplir estos términos puede conducir a una expulsión temporal o permanente.","breadcrumbs":"Codigo de conducto » 2. Aviso","id":"173","title":"2. Aviso"},"174":{"body":"Impacto en la Comunidad : Una serie de incumplimientos de los estándares de la comunidad, incluyendo comportamiento inapropiado continuo. Consecuencia : Una expulsión temporal de cualquier forma de interacción o comunicación pública con la comunidad durante un intervalo de tiempo especificado. No se permite interactuar de manera pública o privada con las personas involucradas, incluyendo interacciones no solicitadas con quienes se encuentran aplicando el Código de Conducta, durante este periodo. Incumplir estos términos puede conducir a una expulsión permanente.","breadcrumbs":"Codigo de conducto » 3. Expulsión temporal","id":"174","title":"3. Expulsión temporal"},"175":{"body":"Impacto en la Comunidad : Demostrar un patrón sistemático de incumplimientos de los estándares de la comunidad, incluyendo conductas inapropiadas prolongadas en el tiempo, acoso de individuos, o agresiones o menosprecio a grupos de individuos. Consecuencia : Una expulsión permanente de cualquier tipo de interacción pública con la comunidad del proyecto.","breadcrumbs":"Codigo de conducto » 4. Expulsión permanente","id":"175","title":"4. Expulsión permanente"},"176":{"body":"Este Código de Conducta es una adaptación del Contributor Covenant , versión 2.1, disponible en https://www.contributor-covenant.org/es/version/2/1/code_of_conduct.html Las Guías de Impacto en la Comunidad están inspiradas en la escalera de aplicación del código de conducta de Mozilla . Para respuestas a las preguntas frecuentes de este código de conducta, consulta las FAQ en https://www.contributor-covenant.org/faq . Hay traducciones disponibles en https://www.contributor-covenant.org/translations https://www.contributor-covenant.org/translations","breadcrumbs":"Codigo de conducto » Atribución","id":"176","title":"Atribución"},"177":{"body":"license Si utiliza gget en una publicación, favor de citar: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Si utiliza gget alphafold, favor de citar también: Jumper, J., Evans, R., Pritzel, A. et al. Highly accurate protein structure prediction with AlphaFold. Nature 596, 583–589 (2021). https://doi.org/10.1038/s41586-021-03819-2 Y si aplica: Evans, R. et al. Protein complex prediction with AlphaFold-Multimer. bioRxiv 2021.10.04.463034; https://doi.org/10.1101/2021.10.04.463034 Si utiliza gget archs4, favor de citar también: Lachmann A, Torre D, Keenan AB, Jagodnik KM, Lee HJ, Wang L, Silverstein MC, Ma’ayan A. Massive mining of publicly available RNA-seq data from human and mouse. Nature Communications 9. Article number: 1366 (2018), doi:10.1038/s41467-018-03751-6 Bray NL, Pimentel H, Melsted P and Pachter L, Near optimal probabilistic RNA-seq quantification, Nature Biotechnology 34, p 525--527 (2016). https://doi.org/10.1038/nbt.3519 Si utiliza gget bgee, favor de citar también: Frederic B Bastian, Julien Roux, Anne Niknejad, Aurélie Comte, Sara S Fonseca Costa, Tarcisio Mendes de Farias, Sébastien Moretti, Gilles Parmentier, Valentine Rech de Laval, Marta Rosikiewicz, Julien Wollbrett, Amina Echchiki, Angélique Escoriza, Walid H Gharib, Mar Gonzales-Porta, Yohan Jarosz, Balazs Laurenczy, Philippe Moret, Emilie Person, Patrick Roelli, Komal Sanjeev, Mathieu Seppey, Marc Robinson-Rechavi (2021). The Bgee suite: integrated curated expression atlas and comparative transcriptomics in animals. Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D831–D847, https://doi.org/10.1093/nar/gkaa793 Si utiliza gget blast, favor de citar también: Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712. Si utiliza gget blat, favor de citar también: Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518. Si utiliza gget cbio, favor de citar también: Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset. Si utiliza gget cellxgene, favor de citar también: Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/ Si utiliza gget cosmic, favor de citar también: Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903. Si utiliza gget diamond, favor de citar también: Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176 Si utiliza gget elm, favor de citar también: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics, 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975 Si utiliza gget enrichr, favor de citar también: Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . Si trabaja con conjuntos de datos no humanos/ratón, cite también: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483. Si utiliza gget info, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052 Si utiliza gget muscle, favor de citar también: Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169 Si utiliza gget opentargets, favor de citar también: Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572. Si utiliza gget pdb, favor de citar también: Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472. Si utiliza gget ref o gget search, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Si utiliza gget seq, favor de citar también: Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"Cómo citar » Citar","id":"177","title":"Citar"},"178":{"body":"gget es tan preciso como la base de datos/servidores/APIs que utiliza. La exactitud o fiabilidad de los datos no es garantizada por ningún motivo. Los proveedores por ningún motivo seran responsables de (incluyendo, sin limite alguno) la calidad, ejecución, o comerciabilidad para cualquier propósito particular surgiendo del uso o la incapacidad de usar los datos.","breadcrumbs":"Cómo citar » Descargo de responsabilidad","id":"178","title":"Descargo de responsabilidad"},"18":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. BLAST a nucleotide or amino acid sequence to any BLAST database. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument sequence Nucleotide or amino acid sequence, or path to FASTA or .txt file. Optional arguments -p --program 'blastn', 'blastp', 'blastx', 'tblastn', or 'tblastx'. Default: 'blastn' for nucleotide sequences; 'blastp' for amino acid sequences. -db --database 'nt', 'nr', 'refseq_rna', 'refseq_protein', 'swissprot', 'pdbaa', or 'pdbnt'. Default: 'nt' for nucleotide sequences; 'nr' for amino acid sequences. More info on BLAST databases -l --limit Limits number of hits to return. Default: 50. -e --expect Defines the expect value cutoff. Default: 10.0. -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -lcf --low_comp_filt Turns on low complexity filter . -mbo --megablast_off Turns off MegaBLAST algorithm. Default: MegaBLAST on (blastn only). -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget blast » gget blast 💥","id":"18","title":"gget blast 💥"},"19":{"body":"gget blast MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blast(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\") → Returns the BLAST result of the sequence of interest. gget blast automatically detects this sequence as an amino acid sequence and therefore sets the BLAST program to blastp with database nr . Description Scientific Name Common Name Taxid Max Score Total Score Query Cover ... PREDICTED: gamma-aminobutyric acid receptor-as... Colobus angolensis palliatus NaN 336983 180 180 100% ... . . . . . . . . . . . . . . . . . . . . . ... BLAST from .fa or .txt file: gget blast fasta.fa # Python\ngget.blast(\"fasta.fa\") → Returns the BLAST results of the first sequence contained in the fasta.fa file. More examples","breadcrumbs":"gget blast » Example","id":"19","title":"Example"},"2":{"body":"Version ≥ 0.29.0 (Sep 25, 2024): New modules: gget cbio gget opentargets gget bgee gget enrichr now also supports species other than human and mouse (fly, yeast, worm, and fish) via modEnrichR gget mutate : gget mutate will now merge identical sequences in the final file by default. Mutation creation was vectorized to decrease runtime. Improved flanking sequence check for non-substitution mutations to make sure no wildtype kmer is retained in the mutation-containing sequence. Addition of several new arguments to customize sequence generation and output. gget cosmic : Added support for targeted as well as gene screens. The CSV file created for gget mutate now also contains protein mutation info. gget ref : Added out file option. gget info and gget seq : Switched to Ensembl POST API to increase speed (nothing changes in front end). Other \"behind the scenes\" changes: Unit tests reorganized to increase speed and decrease code Requirements updated to allow newer mysql-connector versions Support Numpy>= 2.0 Version ≥ 0.28.6 (Jun 2, 2024): New module: gget mutate gget cosmic : You can now download entire COSMIC databases using the argument download_cosmic argument gget ref : Can now fetch the GRCh37 genome assembly using species='human_grch37' gget search : Adjust access of human data to the structure of Ensembl release 112 (fixes issue 129 ) Version ≥ 0.28.5 (May 29, 2024): Yanked due to logging bug in gget.setup(\"alphafold\") + inversion mutations in gget mutate only reverse the string instead of also computing the complementary strand Version ≥ 0.28.4 (January 31, 2024): gget setup : Fix bug with filepath when running gget.setup(\"elm\") on Windows OS. Version ≥ 0.28.3 (January 22, 2024): gget search and gget ref now also support fungi 🍄, protists 🌝, and invertebrate metazoa 🐝 🐜 🐌 🐙 (in addition to vertebrates and plants) New module: gget cosmic gget enrichr : Fix duplicate scatter dots in plot when pathway names are duplicated gget elm : Changed ortho results column name 'Ortholog_UniProt_ID' to 'Ortholog_UniProt_Acc' to correctly reflect the column contents, which are UniProt Accessions. 'UniProt ID' was changed to 'UniProt Acc' in the documentation for all gget modules. Changed ortho results column name 'motif_in_query' to 'motif_inside_subject_query_overlap'. Added interaction domain information to results (new columns: \"InteractionDomainId\", \"InteractionDomainDescription\", \"InteractionDomainName\"). The regex string for regular expression matches was encapsulated as follows: \"(?=(regex))\" (instead of directly passing the regex string \"regex\") to enable capturing all occurrences of a motif when the motif length is variable and there are repeats in the sequence ( https://regex101.com/r/HUWLlZ/1 ). gget setup : Use the out argument to specify a directory the ELM database will be downloaded into. Completes this feature request . gget diamond : The DIAMOND command is now run with --ignore-warnings flag, allowing niche sequences such as amino acid sequences that only contain nucleotide characters and repeated sequences. This is also true for DIAMOND alignments performed within gget elm . gget ref and gget search back-end change: the current Ensembl release is fetched from the new release file on the Ensembl FTP site to avoid errors during uploads of new releases. gget search : FTP link results (--ftp) are saved in txt file format instead of json. Fix URL links to Ensembl gene summary for species with a subspecies name and invertebrates. gget ref : Back-end changes to increase speed New argument: list_iv_species to list all available invertebrate species (can be combined with the release argument to fetch all species available from a specific Ensembl release) Version ≥ 0.28.2 (November 15, 2023): gget info : Return a logging error message when the NCBI server fails for a reason other than a fetch fail (this is an error on the server side rather than an error with gget) Replace deprecated 'text' argument to find()-type methods whenever used with dependency BeautifulSoup gget elm : Remove false positive and true negative instances from returned results gget elm : Add expand argument Version ≥ 0.28.0 (November 5, 2023): Updated documentation of gget muscle to add a tutorial on how to visualize sequences with varying sequence name lengths + slight change to returned visualization so it's a bit more robust to varying sequence names gget muscle now also allows a list of sequences as input (as an alternative to providing the path to a FASTA file) Allow missing gene filter for gget cellxgene (fixes bug ) gget seq : Allow missing gene names (fixes https://github.com/pachterlab/gget/issues/107 ) gget enrichr : Use new arguments kegg_out and kegg_rank to create an image of the KEGG pathway with the genes from the enrichment analysis highlighted (thanks to this PR by Noriaki Sato ) New modules: gget elm and gget diamond Version ≥ 0.27.9 (August 7, 2023): gget enrichr : Use new argument background_list to provide a list of background genes gget search now also searches Ensembl synonyms (in addition to gene descriptions and names) to return more comprehensive search results (thanks to Samuel Klein for the suggestion ) Version ≥ 0.27.8 (July 12, 2023): gget search : Specify the Ensembl release from which information is fetched with new argument -r --release Fixed bug in gget pdb (this bug was introduced in version 0.27.5) Version ≥ 0.27.7 (May 15, 2023): Moved dependencies for modules gget gpt and gget cellxgene from automatically installed requirements to gget setup . Updated gget alphafold dependencies for compatibility with Python >= 3.10. Added census_version argument to gget cellxgene . Version ≥ 0.27.6 (May 1, 2023) (YANKED due to problems with dependencies -> replaced with version 0.27.7): Thanks to PR by Tomás Di Domenico : gget search can now also query plant 🌱 Ensembl IDs. New module: gget cellxgene Version ≥ 0.27.5 (April 6, 2023): Updated gget search to function correctly with new Pandas version 2.0.0 (released on April 3rd, 2023) as well as older versions of Pandas Updated gget info with new flags uniprot and ncbi which allow turning off results from these databases independently to save runtime (note: flag ensembl_only was deprecated) All gget modules now feature a -q / --quiet (Python: verbose=False) flag to turn off progress information Version ≥ 0.27.4 (March 19, 2023): New module: gget gpt Version ≥ 0.27.3 (March 11, 2023): gget info excludes PDB IDs by default to increase speed (PDB results can be included using flag --pdb / pdb=True). Version ≥ 0.27.2 (January 1, 2023): Updated gget alphafold to DeepMind's AlphaFold v2.3.0 (including new arguments multimer_for_monomer and multimer_recycles) Version ≥ 0.27.0 (December 10, 2022): Updated gget alphafold to match recent changes by DeepMind Updated version number to match gget's creator 's age following a long-standing Pachter lab tradition Version ≥ 0.3.13 (November 11, 2022): Reduced runtime for gget enrichr and gget archs4 when used with Ensembl IDs Version ≥ 0.3.12 (November 10, 2022): gget info now also returns subcellular localisation data from UniProt New gget info flag ensembl_only returns only Ensembl results Reduced runtime for gget info and gget seq Version ≥ 0.3.11 (September 7, 2022): New module: gget pdb Version ≥ 0.3.10 (September 2, 2022): gget alphafold now also returns pLDDT values for generating plots from output without rerunning the program (also see the gget alphafold FAQ ) Version ≥ 0.3.9 (August 25, 2022): Updated openmm installation instructions for gget alphafold Version ≥ 0.3.8 (August 12, 2022): Fixed mysql-connector-python version requirements Version ≥ 0.3.7 (August 9, 2022): NOTE: The Ensembl FTP site changed its structure on August 8, 2022. Please upgrade to gget version ≥ 0.3.7 if you use gget ref Version ≥ 0.3.5 (August 6, 2022): New module: gget alphafold Version ≥ 0.2.6 (July 7, 2022): gget ref now supports plant genomes! 🌱 Version ≥ 0.2.5 (June 30, 2022): NOTE: UniProt changed the structure of their API on June 28, 2022. Please upgrade to gget version ≥ 0.2.5 if you use any of the modules querying data from UniProt ( gget info and gget seq ). Version ≥ 0.2.3: (June 26, 2022): JSON is now the default output format for the command-line interface for modules that previously returned data frame (CSV) format by default (the output can be converted to data frame/CSV using flag [-csv][--csv]). Data frame/CSV remains the default output for Jupyter Lab / Google Colab (and can be converted to JSON with json=True). For all modules, the first required argument was converted to a positional argument and should not be named anymore in the command-line, e.g. gget ref -s human → gget ref human. gget info: [--expand] is deprecated. The module will now always return all of the available information. Slight changes to the output returned by gget info, including the return of versioned Ensembl IDs. gget info and gget seq now support 🪱 WormBase and 🪰 FlyBase IDs. gget archs4 and gget enrichr now also take Ensembl IDs as input with added flag [-e][--ensembl] (ensembl=True in Jupyter Lab / Google Colab). gget seq argument seqtype was replaced by flag [-t][--translate] (translate=True/False in Jupyter Lab / Google Colab) which will return either nucleotide (False) or amino acid (True) sequences. gget search argument seqtype was renamed to id_type for clarity (still taking the same arguments 'gene' or 'transcript').","breadcrumbs":"What's New? » ✨ What's new","id":"2","title":"✨ What's new"},"20":{"body":"If you use gget blast in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. doi: 10.1016/S0022-2836(05)80360-2. PMID: 2231712.","breadcrumbs":"gget blast » References","id":"20","title":"References"},"21":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Find the genomic location of a nucleotide or amino acid sequence using BLAT . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument sequence Nucleotide or amino acid sequence, or path to FASTA or .txt file. Optional arguments -st --seqtype 'DNA', 'protein', 'translated%20RNA', or 'translated%20DNA'. Default: 'DNA' for nucleotide sequences; 'protein' for amino acid sequences. -a --assembly 'human' (hg38) (default), 'mouse' (mm39), 'zebrafinch' (taeGut2), or any of the species assemblies available here (use short assembly name). -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget blat » gget blat 🎯","id":"21","title":"gget blat 🎯"},"22":{"body":"gget blat -a taeGut2 MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR # Python\ngget.blat(\"MKWMFKEDHSLEHRCVESAKIRAKYPDRVPVIVEKVSGSQIVDIDKRKYLVPSDITVAQFMWIIRKRIQLPSEKAIFLFVDKTVPQSR\", assembly=\"taeGut2\") → Returns BLAT results for assembly taeGut2 (zebra finch). In the above example, gget blat automatically detects this sequence as an amino acid sequence and therefore sets the BLAT seqtype to protein . genome query_size aligned_start aligned_end matches mismatches %_aligned ... taeGut2 88 12 88 77 0 87.5 ... More examples","breadcrumbs":"gget blat » Example","id":"22","title":"Example"},"23":{"body":"If you use gget blat in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Kent WJ. BLAT--the BLAST-like alignment tool. Genome Res. 2002 Apr;12(4):656-64. doi: 10.1101/gr.229202. PMID: 11932250; PMCID: PMC187518.","breadcrumbs":"gget blat » References","id":"23","title":"References"},"24":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Plot cancer genomics heatmaps using data from cBioPortal using Ensembl IDs or gene names. This module was written by Sam Wagenaar . Positional argument subcommand Either search or plot","breadcrumbs":"gget cbio » gget cbio 📖","id":"24","title":"gget cbio 📖"},"25":{"body":"Find cBioPortal study IDs by keyword. Return format: JSON (command-line) or string list (Python). Note: This does not return studies with mixed cancer types. Positional argument keywords Space-separated list of keywords to search for, e.g. breast lung. Python: Pass keywords as a list of strings.","breadcrumbs":"gget cbio » search subcommand (Python: gget.cbio_search)","id":"25","title":"search subcommand (Python: gget.cbio_search)"},"26":{"body":"Plot cancer genomics heatmaps using data from cBioPortal. Return format: PNG (command-line and Python) Required arguments -s --study_ids Space-separated list of cBioPortal study IDs, e.g. msk_impact_2017 egc_msk_2023. -g --genes Space-separated list of gene names or Ensembl IDs, e.g. NOTCH3 ENSG00000108375. Optional arguments -st --stratification Column to stratify the data by. Default: tissue. Options: tissue cancer_type cancer_type_detailed study_id sample -vt --variation_type Type of variation to plot. Default: mutation_occurrences. Options: mutation_occurrences cna_nonbinary (Note: stratification must be 'sample' for this option) sv_occurrences cna_occurrences Consequence (Note: stratification must be 'sample' for this option) -f --filter Filter the data by a specific value in a specific column, e.g. study_id:msk_impact_2017 Python: filter=(column, value) -dd --data_dir Directory to store data files. Default: ./gget_cbio_cache. -fd --figure_dir Directory to output figures. Default: ./gget_cbio_figures. -fn --filename Filename for the output figure, relative to figure_dir. Default: auto-generated Python: figure_filename -t --title Title for the output figure. Default: auto-generated Python: figure_title -dpi --dpi DPI of the output figure. Default: 100. Flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. -nc --no_confirm Command-line only. Skip download confirmation prompts. Python: Use confirm_download=True to enable download confirmation prompts. -sh --show Show the plot in a window (automatic in Jupyter notebooks).","breadcrumbs":"gget cbio » plot subcommand (Python: gget.cbio_plot)","id":"26","title":"plot subcommand (Python: gget.cbio_plot)"},"27":{"body":"Find all cBioPortal studies with cancer types matching specific keywords: gget cbio search esophag ovary ovarian # Python\nimport gget\ngget.cbio_search(['esophag', 'ovary', 'ovarian']) → Returns a list of studies with cancer types matching the keywords esophag, ovary, or ovarian. ['egc_tmucih_2015', 'egc_msk_2017', ..., 'msk_spectrum_tme_2022'] Plot a heatmap of mutation occurrences for specific genes in a specific study: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st tissue \\ -vt mutation_occurrences \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='tissue', variation_type='mutation_occurrences', dpi=200\n) → Saves a heatmap of mutation occurrences for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_tissue.png. Heatmap Plot a heatmap of mutation types for specific genes in a specific study: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', dpi=200,\n) → Saves a heatmap of mutation types for the specified genes in the specified study to ./gget_cbio_figures/Heatmap_sample.png. Heatmap Plot a heatmap of mutation types for specific genes in a specific study, filtering by tissue: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -f tissue:intestine \\ -dpi 200 \\ -y # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', filter=('tissue', 'intestine'), dpi=200,\n) → Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, to ./gget_cbio_figures/Heatmap_sample_intestine.png. Heatmap Plot a heatmap with a custom title and filename: gget cbio plot \\ -s msk_impact_2017 \\ -g AKT1 ALK FLT4 MAP3K1 MLL2 MLL3 NOTCH3 NOTCH4 PDCD1 RNF43 \\ -st sample \\ -vt Consequence \\ -f tissue:intestine \\ -dpi 200 \\ -y \\ -t \"Intestinal Mutations\" \\ -fn intestinal_mutations.png # Python\nimport gget\ngget.cbio_plot( ['msk_impact_2017'], ['AKT1', 'ALK', 'FLT4', 'MAP3K1', 'MLL2', 'MLL3', 'NOTCH3', 'NOTCH4', 'PDCD1', 'RNF43'], stratification='sample', variation_type='Consequence', filter=('tissue', 'intestine'), dpi=200, figure_title='Intestinal Mutations', figure_filename='intestinal_mutations.png'\n) → Saves a heatmap of mutation types for the specified genes in the specified study, filtered by tissue, with the title \"Intestinal Mutations\" to ./gget_cbio_figures/intestinal_mutations.png. Heatmap More examples","breadcrumbs":"gget cbio » Examples","id":"27","title":"Examples"},"28":{"body":"If you use gget cbio in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Cerami E, Gao J, Dogrusoz U, Gross BE, Sumer SO, Aksoy BA, Jacobsen A, Byrne CJ, Heuer ML, Larsson E, Antipin Y, Reva B, Goldberg AP, Sander C, Schultz N. The cBio cancer genomics portal: an open platform for exploring multidimensional cancer genomics data. Cancer Discov. 2012 May;2(5):401-4. doi: 10.1158/2159-8290.CD-12-0095 . Erratum in: Cancer Discov. 2012 Oct;2(10):960. PMID: 22588877; PMCID: PMC3956037. Gao J, Aksoy BA, Dogrusoz U, Dresdner G, Gross B, Sumer SO, Sun Y, Jacobsen A, Sinha R, Larsson E, Cerami E, Sander C, Schultz N. Integrative analysis of complex cancer genomics and clinical profiles using the cBioPortal. Sci Signal. 2013 Apr 2;6(269):pl1. doi: 10.1126/scisignal.2004088 . PMID: 23550210; PMCID: PMC4160307. de Bruijn I, Kundra R, Mastrogiacomo B, Tran TN, Sikina L, Mazor T, Li X, Ochoa A, Zhao G, Lai B, Abeshouse A, Baiceanu D, Ciftci E, Dogrusoz U, Dufilie A, Erkoc Z, Garcia Lara E, Fu Z, Gross B, Haynes C, Heath A, Higgins D, Jagannathan P, Kalletla K, Kumari P, Lindsay J, Lisman A, Leenknegt B, Lukasse P, Madela D, Madupuri R, van Nierop P, Plantalech O, Quach J, Resnick AC, Rodenburg SYA, Satravada BA, Schaeffer F, Sheridan R, Singh J, Sirohi R, Sumer SO, van Hagen S, Wang A, Wilson M, Zhang H, Zhu K, Rusk N, Brown S, Lavery JA, Panageas KS, Rudolph JE, LeNoue-Newton ML, Warner JL, Guo X, Hunter-Zinck H, Yu TV, Pilai S, Nichols C, Gardos SM, Philip J; AACR Project GENIE BPC Core Team, AACR Project GENIE Consortium; Kehl KL, Riely GJ, Schrag D, Lee J, Fiandalo MV, Sweeney SM, Pugh TJ, Sander C, Cerami E, Gao J, Schultz N. Analysis and Visualization of Longitudinal Genomic and Clinical Data from the AACR Project GENIE Biopharma Collaborative in cBioPortal. Cancer Res. 2023 Dec 1;83(23):3861-3867. doi: 10.1158/0008-5472.CAN-23-0816 . PMID: 37668528; PMCID: PMC10690089. Please also cite the source of the data if you are using a publicly available dataset.","breadcrumbs":"gget cbio » References","id":"28","title":"References"},"29":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Query data from CZ CELLxGENE Discover using the CZ CELLxGENE Discover Census . CZ CELLxGENE Discover provides ready-to-use single-cell RNA sequencing count matrices for certain tissues/diseases/genes/etc. Returns: An AnnData object containing the count matrix and metadata of single-cell RNA sequencing data from the defined tissues/genes/etc. Before using gget cellxgene for the first time, run gget setup cellxgene / gget.setup(\"cellxgene\") once (also see gget setup ). Optional arguments -s --species Choice of 'homo_sapiens' or 'mus_musculus'. Default: 'homo_sapiens'. -g --gene Str or list of gene name(s) or Ensembl ID(s). Default: None. NOTE: Use -e / --ensembl (Python: ensembl=True) when providing Ensembl ID(s) instead of gene name(s). See https://cellxgene.cziscience.com/gene-expression for examples of available genes. -cv --census_version Str defining version of Census, e.g. \"2023-05-15\", or \"latest\" or \"stable\". Default: \"stable\". -cn --column_names List of metadata columns to return (stored in AnnData.obs). Default: ['dataset_id', 'assay', 'suspension_type', 'sex', 'tissue_general', 'tissue', 'cell_type'] For more options, see: https://api.cellxgene.cziscience.com/curation/ui/#/ -> Schemas -> dataset -o --out Path to file to save generated AnnData .h5ad file (or .csv with -mo / --meta_only). Required when using from command line! Flags -e --ensembl Use when genes are provided as Ensembl IDs instead of gene names. -mo --meta_only Only returns metadata data frame (corresponds to AnnData.obs). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. Optional arguments corresponding to CZ CELLxGENE Discover metadata attributes --tissue Str or list of tissue(s), e.g. ['lung', 'blood']. Default: None. See https://cellxgene.cziscience.com/gene-expression for examples of available tissues. --cell_type Str or list of cell type (s), e.g. ['mucus secreting cell', 'neuroendocrine cell']. Default: None. See https://cellxgene.cziscience.com/gene-expression and select a tissue to see examples of available cell types. --development_stage Str or list of development stage(s). Default: None. --disease Str or list of disease(s). Default: None. --sex Str or list of sex(es), e.g. 'female'. Default: None. --dataset_id Str or list of CELLxGENE dataset ID(s). Default: None. --tissue_general_ontology_term_id Str or list of high-level tissue UBERON ID(s). Default: None. Tissue labels and their corresponding UBERON IDs are listed here . --tissue_general Str or list of high-level tissue label(s). Default: None. Tissue labels and their corresponding UBERON IDs are listed here . --tissue_ontology_term_id Str or list of tissue ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --assay_ontology_term_id Str or list of assay ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --assay Str or list of assay(s) as defined in the CELLxGENE dataset schema . Default: None. --cell_type_ontology_term_id Str or list of cell type ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --development_stage_ontology_term_id Str or list of development stage ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --disease_ontology_term_id Str or list of disease ontology term ID(s) as defined in the CELLxGENE dataset schema . Default: None. --donor_id Str or list of donor ID(s) as defined in the CELLxGENE dataset schema . Default: None. --self_reported_ethnicity_ontology_term_id Str or list of self-reported ethnicity ontology ID(s) as defined in the CELLxGENE dataset schema . Default: None. --self_reported_ethnicity Str or list of self-reported ethnicity as defined in the CELLxGENE dataset schema . Default: None. --sex_ontology_term_id Str or list of sex ontology ID(s) as defined in the CELLxGENE dataset schema . Default: None. --suspension_type Str or list of suspension type(s) as defined in the CELLxGENE dataset schema . Default: None.","breadcrumbs":"gget cellxgene » gget cellxgene 🍱","id":"29","title":"gget cellxgene 🍱"},"3":{"body":"pypi version image pip install --upgrade gget Alternative: conda install -c bioconda gget For use in Jupyter Lab / Google Colab: import gget","breadcrumbs":"Installation » Installation","id":"3","title":"Installation"},"30":{"body":"gget cellxgene --gene ACE2 ABCA1 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' 'neuroendocrine cell' -o example_adata.h5ad # Python\nadata = gget.cellxgene( gene = [\"ACE2\", \"ABCA1\", \"SLC5A1\"], tissue = \"lung\", cell_type = [\"mucus secreting cell\", \"neuroendocrine cell\"]\n)\nadata → Returns an AnnData object containing the scRNAseq ACE2, ABCA1, and SLC5A1 count matrix of 3322 human lung mucus secreting and neuroendocrine cells from CZ CELLxGENE Discover and their corresponding metadata. Fetch metadata (corresponds to AnnData.obs) only: gget cellxgene --meta_only --gene ENSMUSG00000015405 --ensembl --tissue lung --species mus_musculus -o example_meta.csv # Python\ndf = gget.cellxgene( meta_only = True, gene = \"ENSMUSG00000015405\", ensembl = True, tissue = \"lung\", species = \"mus_musculus\"\n)\ndf → Returns only the metadata from ENSMUSG00000015405 (ACE2) expression datasets corresponding to mouse lung cells. Also see: https://chanzuckerberg.github.io/cellxgene-census/notebooks/api_demo/census_gget_demo.html","breadcrumbs":"gget cellxgene » Examples","id":"30","title":"Examples"},"31":{"body":"If you use gget cellxgene in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chanzuckerberg Initiative. (n.d.). CZ CELLxGENE Discover. Retrieved [insert date here], from https://cellxgene.cziscience.com/","breadcrumbs":"gget cellxgene » References","id":"31","title":"References"},"32":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Search for genes, mutations, and other factors associated with cancer using the COSMIC (Catalogue Of Somatic Mutations In Cancer) database. Return format: JSON (command-line) or data frame/CSV (Python) when download_cosmic=False. When download_cosmic=True, downloads the requested database into the specified folder. This module was written in part by @AubakirovArman (information querying) and @josephrich98 (database download). NOTE: License fees apply for the commercial use of COSMIC. You can read more about licensing COSMIC data here . Positional argument (for querying information) searchterm Search term, which can be a mutation, or gene name (or Ensembl ID), or sample, etc. Examples for the searchterm and entitity arguments: searchterm entitity EGFR mutations -> Find mutations in the EGFR gene that are associated with cancer v600e mutations -> Find genes for which a v600e mutation is associated with cancer COSV57014428 mutations -> Find mutations associated with this COSMIC mutations ID EGFR genes -> Get the number of samples, coding/simple mutations, and fusions observed in COSMIC for EGFR prostate cancer -> Get number of tested samples and mutations for prostate cancer prostate tumour_site -> Get number of tested samples, genes, mutations, fusions, etc. with 'prostate' as primary tissue site ICGC studies -> Get project code and descriptions for all studies from the ICGC (International Cancer Genome Consortium) EGFR pubmed -> Find PubMed publications on EGFR and cancer ICGC samples -> Get metadata on all samples from the ICGC (International Cancer Genome Consortium) COSS2907494 samples -> Get metadata on this COSMIC sample ID (cancer type, tissue, # analyzed genes, # mutations, etc.) NOTE: (Python only) Set to None when downloading COSMIC databases with download_cosmic=True. Optional arguments (for querying information) -e --entity 'mutations' (default), 'genes', 'cancer', 'tumour site', 'studies', 'pubmed', or 'samples'. Defines the type of the results to return. -l --limit Limits number of hits to return. Default: 100. Flags (for downloading COSMIC databases) -d --download_cosmic Switches into database download mode. -gm --gget_mutate TURNS OFF creation of a modified version of the database for use with gget mutate. Python: gget_mutate is True by default. Set gget_mutate=False to disable. Optional arguments (for downloading COSMIC databases) -mc --mutation_class 'cancer' (default), 'cell_line', 'census', 'resistance', 'genome_screen', 'targeted_screen', or 'cancer_example' Type of COSMIC database to download. -cv --cosmic_version Version of the COSMIC database. Default: None -> Defaults to latest version. -gv --grch_version Version of the human GRCh reference genome the COSMIC database was based on (37 or 38). Default: 37 --keep_genome_info Whether to keep genome information in the modified database for use with gget mutate. Default: False --remove_duplicates Whether to remove duplicate rows from the modified database for use with gget mutate. Default: False Optional arguments (general) -o --out Path to the file (or folder when downloading databases with the download_cosmic flag) the results will be saved in, e.g. 'path/to/results.json'. Default: None -> When download_cosmic=False: Results will be returned to standard out -> When download_cosmic=True: Database will be downloaded into current working directory Flags (general) -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget cosmic » gget cosmic 🪐","id":"32","title":"gget cosmic 🪐"},"33":{"body":"Query information gget cosmic EGFR # Python\ngget.cosmic(\"EGFR\") → Returns mutations in the EGFR gene that are associated with cancer in the format: Gene Syntax Alternate IDs Canonical EGFR c.*2446A>G EGFR c.*2446A>G, EGFR p.?, ... y EGFR c.(2185_2283)ins(18) EGFR c.(2185_2283)ins(18), EGFR p.?, ... y . . . . . . . . . . . .","breadcrumbs":"gget cosmic » Examples","id":"33","title":"Examples"},"34":{"body":"gget cosmic --download_cosmic # Python\ngget.cosmic(searchterm=None, download_cosmic=True) → Downloads the COSMIC cancer database of the latest COSMIC release into the current working directory.","breadcrumbs":"gget cosmic » Downloading COSMIC databases","id":"34","title":"Downloading COSMIC databases"},"35":{"body":"If you use gget cosmic in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Tate JG, Bamford S, Jubb HC, Sondka Z, Beare DM, Bindal N, Boutselakis H, Cole CG, Creatore C, Dawson E, Fish P, Harsha B, Hathaway C, Jupe SC, Kok CY, Noble K, Ponting L, Ramshaw CC, Rye CE, Speedy HE, Stefancsik R, Thompson SL, Wang S, Ward S, Campbell PJ, Forbes SA. COSMIC: the Catalogue Of Somatic Mutations In Cancer. Nucleic Acids Res. 2019 Jan 8;47(D1):D941-D947. doi: 10.1093/nar/gky1015 . PMID: 30371878; PMCID: PMC6323903.","breadcrumbs":"gget cosmic » References","id":"35","title":"References"},"36":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Align multiple protein or translated DNA sequences using DIAMOND (DIAMOND is similar to BLAST, but this is a local computation). Return format: JSON (command-line) or data frame/CSV (Python). Positional argument query Sequences (str or list) or path to FASTA file containing sequences to be aligned against the reference. Required arguments -ref --reference Reference sequences (str or list) or path to FASTA file containing reference sequences. Optional arguments -db --diamond_db Path to save DIAMOND database created from reference (str). Default: None -> Temporary db file will be deleted after alignment or saved in out if out is provided. -s --sensitivity Sensitivity of alignment (str). Default: \"very-sensitive\". One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Number of threads used (int). Default: 1. -db --diamond_binary Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget. -o --out Path to the folder to save results in (str), e.g. \"path/to/directory\". Default: Standard out; temporary files are deleted. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget diamond » gget diamond 💎","id":"36","title":"gget diamond 💎"},"37":{"body":"# !!! Make sure to list the positional argument first here so it is not added as a reference sequence\ngget diamond GGETISAWESQME ELVISISALIVE LQVEFRANKLIN PACHTERLABRQCKS -ref GGETISAWESQMEELVISISALIVELQVEFRANKLIN PACHTERLABRQCKS # Python\ngget.diamond([\"GGETISAWESQME\", \"ELVISISALIVE\", \"LQVEFRANKLIN\", \"PACHTERLABRQCKS\"], reference=[\"GGETISAWESQMEELVISISALIVELQVEFRANKLIN\", \"PACHTERLABRQCKS\"]) → Returns results in JSON (command-line) or data frame/CSV (Python) format: query_accession subject_accession identity_percentage query_seq_length subject_seq_length length mismatches gap_openings query_start query_end subject_start subject_end e-value bit_score Seq0 Seq0 100 13 37 13 0 0 1 13 1 13 2.82e-09 30.8 Seq2 Seq0 100 12 37 12 0 0 1 12 26 37 4.35e-08 27.7 Seq3 Seq1 100 15 15 15 0 0 1 15 1 15 2.01e-11 36.2 More examples","breadcrumbs":"gget diamond » Example","id":"37","title":"Example"},"38":{"body":"If you use gget diamond in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Buchfink, B., Xie, C. & Huson, D. Fast and sensitive protein alignment using DIAMOND. Nat Methods 12, 59–60 (2015). https://doi.org/10.1038/nmeth.3176","breadcrumbs":"gget diamond » References","id":"38","title":"References"},"39":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Locally predict Eukaryotic Linear Motifs from an amino acid sequence or UniProt Acc using data from the ELM database . Return format: JSON (command-line) or data frame/CSV (Python). This module returns two data frames (or JSON formatted files) (see examples). ELM data can be downloaded & distributed for non-commercial use according to the ELM Software License Agreement . Before using gget elm for the first time, run gget setup elm (bash) / gget.setup(\"elm\") (Python) once (also see gget setup ). Positional argument sequence Amino acid sequence or Uniprot Acc (str). When providing a Uniprot Acc, use flag --uniprot (Python: uniprot=True). Optional arguments -s --sensitivity Sensitivity of DIAMOND alignment (str). Default: \"very-sensitive\". One of the following: fast, mid-sensitive, sensitive, more-sensitive, very-sensitive, or ultra-sensitive. -t --threads Number of threads used in DIAMOND alignment (int). Default: 1. -bin --diamond_binary Path to DIAMOND binary (str). Default: None -> Uses DIAMOND binary installed with gget. -o --out Path to the folder to save results in (str), e.g. \"path/to/directory\". Default: Standard out; temporary files are deleted. Flags -u --uniprot Set to True if sequence is a Uniprot Acc instead of an amino acid sequence. -e --expand Expand the information returned in the regex data frame to include the protein names, organisms, and references that the motif was orignally validated on. -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget elm » gget elm 🎭","id":"39","title":"gget elm 🎭"},"4":{"body":"Command line: # Fetch all Homo sapiens reference and annotation FTPs from the latest Ensembl release\n$ gget ref homo_sapiens # Get Ensembl IDs of human genes with \"ace2\" or \"angiotensin converting enzyme 2\" in their name/description\n$ gget search -s homo_sapiens 'ace2' 'angiotensin converting enzyme 2' # Look up gene ENSG00000130234 (ACE2) and its transcript ENST00000252519\n$ gget info ENSG00000130234 ENST00000252519 # Fetch the amino acid sequence of the canonical transcript of gene ENSG00000130234\n$ gget seq --translate ENSG00000130234 # Quickly find the genomic location of (the start of) that amino acid sequence\n$ gget blat MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # BLAST (the start of) that amino acid sequence\n$ gget blast MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Align multiple nucleotide or amino acid sequences against each other (also accepts path to FASTA file) $ gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Align one or more amino acid sequences against a reference (containing one or more sequences) (local BLAST) (also accepts paths to FASTA files) $ gget diamond MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS -ref MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Use Enrichr for an ontology analysis of a list of genes\n$ gget enrichr -db ontology ACE2 AGT AGTR1 ACE AGTRAP AGTR2 ACE3P # Get the human tissue expression of gene ACE2\n$ gget archs4 -w tissue ACE2 # Get the protein structure (in PDB format) of ACE2 as stored in the Protein Data Bank (PDB ID returned by gget info)\n$ gget pdb 1R42 -o 1R42.pdb # Find Eukaryotic Linear Motifs (ELMs) in a protein sequence\n$ gget setup elm # setup only needs to be run once\n$ gget elm -o results MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS # Fetch a scRNAseq count matrix (AnnData format) based on specified gene(s), tissue(s), and cell type(s) (default species: human)\n$ gget setup cellxgene # setup only needs to be run once\n$ gget cellxgene --gene ACE2 SLC5A1 --tissue lung --cell_type 'mucus secreting cell' -o example_adata.h5ad # Predict the protein structure of GFP from its amino acid sequence\n$ gget setup alphafold # setup only needs to be run once\n$ gget alphafold MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK Python (Jupyter Lab / Google Colab): import gget\ngget.ref(\"homo_sapiens\")\ngget.search([\"ace2\", \"angiotensin converting enzyme 2\"], \"homo_sapiens\")\ngget.info([\"ENSG00000130234\", \"ENST00000252519\"])\ngget.seq(\"ENSG00000130234\", translate=True)\ngget.blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"])\ngget.diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"], database=\"ontology\", plot=True)\ngget.archs4(\"ACE2\", which=\"tissue\")\ngget.pdb(\"1R42\", save=True) gget.setup(\"elm\") # setup only needs to be run once\northo_df, regex_df = gget.elm(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\") gget.setup(\"cellxgene\") # setup only needs to be run once\ngget.cellxgene(gene = [\"ACE2\", \"SLC5A1\"], tissue = \"lung\", cell_type = \"mucus secreting cell\") gget.setup(\"alphafold\") # setup only needs to be run once\ngget.alphafold(\"MSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKFICTTGKLPVPWPTLVTTFSYGVQCFSRYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYIMADKQKNGIKVNFKIRHNIEDGSVQLADHYQQNTPIGDGPVLLPDNHYLSTQSALSKDPNEKRDHMVLLEFVTAAGITHGMDELYK\") Call gget from R using reticulate : system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") gget$ref(\"homo_sapiens\")\ngget$search(list(\"ace2\", \"angiotensin converting enzyme 2\"), \"homo_sapiens\")\ngget$info(list(\"ENSG00000130234\", \"ENST00000252519\"))\ngget$seq(\"ENSG00000130234\", translate=TRUE)\ngget$blat(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$blast(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\")\ngget$muscle(list(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"), out=\"out.afa\")\ngget$diamond(\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", reference=\"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\")\ngget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\", \"ACE\", \"AGTRAP\", \"AGTR2\", \"ACE3P\"), database=\"ontology\")\ngget$archs4(\"ACE2\", which=\"tissue\")\ngget$pdb(\"1R42\", save=TRUE) More examples","breadcrumbs":"Quick Start Guide » 🪄 Quick start guide","id":"4","title":"🪄 Quick start guide"},"40":{"body":"Find ELMs in an amino acid sequence: gget setup elm # Downloads/updates local ELM database\ngget elm -o gget_elm_results LIAQSIGQASFV # Python\ngget.setup(“elm”) # Downloads/updates local ELM database\northolog_df, regex_df = gget.elm(\"LIAQSIGQASFV\") Find ELMs giving a UniProt Acc as input: gget setup elm # Downloads/updates local ELM database\ngget elm -o gget_elm_results --uniprot Q02410 -e # Python\ngget.setup(“elm”) # Downloads/updates local ELM database\northolog_df, regex_df = gget.elm(\"Q02410\", uniprot=True, expand=True) → Returns two data frames (or JSON formatted dictionaries for command line) containing extensive information about linear motifs associated with orthologous proteins and motifs found in the input sequence directly based on their regex expressions: ortholog_df: Ortholog_UniProt_Acc ProteinName class_accession ELMIdentifier FunctionalSiteName Description Organism … Q02410 APBA1_HUMAN ELME000357 LIG_CaMK_CASK_1 CASK CaMK domain binding ligand motif Motif that mediates binding to the calmodulin-dependent protein kinase (CaMK) domain of the peripheral plasma membrane protein CASK/Lin2. Homo sapiens … Q02410 APBA1_HUMAN ELME000091 LIG_PDZ_Class_2 PDZ domain ligands The C-terminal class 2 PDZ-binding motif is classically represented by a pattern such as Homo sapiens … regex_df: Instance_accession ELMIdentifier FunctionalSiteName ELMType Description Instances (Matched Sequence) Organism … ELME000321 CLV_C14_Caspase3-7 Caspase cleavage motif CLV Caspase-3 and Caspase-7 cleavage site. ERSDG Mus musculus … ELME000102 CLV_NRD_NRD_1 NRD cleavage site CLV N-Arg dibasic convertase (NRD/Nardilysin) cleavage site. RRA Rattus norvegicus … ELME000100 CLV_PCSK_PC1ET2_1 PCSK cleavage site CLV NEC1/NEC2 cleavage site. KRD Mus musculus … ELME000146 CLV_PCSK_SKI1_1 PCSK cleavage site CLV Subtilisin/kexin isozyme-1 (SKI1) cleavage site. RLLTA Homo sapiens … ELME000231 DEG_APCC_DBOX_1 APCC-binding Destruction motifs DEG An RxxL-based motif that binds to the Cdh1 and Cdc20 components of APC/C thereby targeting the protein for destruction in a cell cycle dependent manner SRVKLNIVR Saccharomyces cerevisiae S288c … … … … … … … … …","breadcrumbs":"gget elm » Examples","id":"40","title":"Examples"},"41":{"body":"","breadcrumbs":"gget elm » Tutorials","id":"41","title":"Tutorials"},"42":{"body":"","breadcrumbs":"gget elm » 🔗 General gget elm demo","id":"42","title":"🔗 General gget elm demo"},"43":{"body":"","breadcrumbs":"gget elm » 🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif","id":"43","title":"🔗 A point mutation in BRCA2 is carcinogenic due to the loss of a protein interaction motif"},"44":{"body":"","breadcrumbs":"gget elm » 🔗 Filter gget elm results based on disordered protein regions","id":"44","title":"🔗 Filter gget elm results based on disordered protein regions"},"45":{"body":"If you use gget elm in a publication, please cite the following articles: Laura Luebbert, Chi Hoang, Manjeet Kumar, Lior Pachter, Fast and scalable querying of eukaryotic linear motifs with gget elm, Bioinformatics , 2024, btae095, https://doi.org/10.1093/bioinformatics/btae095 Manjeet Kumar, Sushama Michael, Jesús Alvarado-Valverde, Bálint Mészáros, Hugo Sámano‐Sánchez, András Zeke, Laszlo Dobson, Tamas Lazar, Mihkel Örd, Anurag Nagpal, Nazanin Farahi, Melanie Käser, Ramya Kraleti, Norman E Davey, Rita Pancsa, Lucía B Chemes, Toby J Gibson, The Eukaryotic Linear Motif resource: 2022 release, Nucleic Acids Research, Volume 50, Issue D1, 7 January 2022, Pages D497–D508, https://doi.org/10.1093/nar/gkab975","breadcrumbs":"gget elm » References","id":"45","title":"References"},"46":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Perform an enrichment analysis on a list of genes using Enrichr or modEnrichr . Return format: JSON (command-line) or data frame/CSV (Python). Positional argument genes Short names (gene symbols) of genes to perform enrichment analysis on, e.g. PHF14 RBM3 MSL1 PHF21A. Alternatively: use flag --ensembl to input a list of Ensembl gene IDs, e.g. ENSG00000106443 ENSG00000102317 ENSG00000188895. Other required arguments -db --database Database database to use as reference for the enrichment analysis. Supports any database listed here under 'Gene-set Library' or one of the following shortcuts: 'pathway' (KEGG_2021_Human) 'transcription' (ChEA_2016) 'ontology' (GO_Biological_Process_2021) 'diseases_drugs' (GWAS_Catalog_2019) 'celltypes' (PanglaoDB_Augmented_2021) 'kinase_interactions' (KEA_2015) NOTE: database shortcuts are not supported for species other than 'human' or 'mouse'. Click on the species databases listed below under species to view a list of databases available for each species. Optional arguments -s --species Species to use as reference for the enrichment analysis. (Default: human) Options: Species Database list human Enrichr mouse Equivalent to human fly FlyEnrichr yeast YeastEnrichr worm WormEnrichr fish FishEnrichr -bkg_l --background_list Short names (gene symbols) of background genes to perform enrichment analysis on, e.g. NSUN3 POLRMT NLRX1. Alternatively: use flag --ensembl_background to input a list of Ensembl gene IDs. See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis. -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). (Default: Standard out.) Python: save=True will save the output in the current working directory. -ko --kegg_out Path to the png file the marked KEGG pathway images will be saved in, e.g. path/to/directory/pathway.png. (Default: None) -kr --kegg_rank Rank of the KEGG pathway to be plotted. (Default: 1) figsize Python only. (width, height) of plot in inches. (Default: (10,10)) ax Python only. Pass a matplotlib axes object for plot customization. (Default: None) Flags -e --ensembl Add this flag if genes are given as Ensembl gene IDs. -e_b --ensembl_background Add this flag if background_list are given as Ensembl gene IDs. -bkg --background If True, use set of > 20,000 default background genes listed here . -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. plot Python only. plot=True provides a graphical overview of the first 15 results (default: False).","breadcrumbs":"gget enrichr » gget enrichr 💰","id":"46","title":"gget enrichr 💰"},"47":{"body":"gget enrichr -db ontology ACE2 AGT AGTR1 # Python\ngget.enrichr([\"ACE2\", \"AGT\", \"AGTR1\"], database=\"ontology\", plot=True) → Returns pathways/functions involving genes ACE2, AGT, and AGTR1 from the GO Biological Process 2021 database. In Python, plot=True returns a graphical overview of the results: alt text Use gget enrichr with a background gene list: See this Tweetorial to learn why you should use a background gene list when performing an enrichment analysis. # Here, we are passing the input genes first (positional argument 'genes'), so they are not added to the background gene list behind the '-bkgr_l' argument\ngget enrichr \\ PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1 \\ -db ChEA_2022 \\ -bkg_l NSUN3 POLRMT NLRX1 SFXN5 ZC3H12C SLC25A39 ARSG DEFB29 PCMTD2 ACAA1A LRRC1 2810432D09RIK SEPHS2 SAC3D1 TMLHE LOC623451 TSR2 PLEKHA7 GYS2 ARHGEF12 HIBCH LYRM2 ZBTB44 ENTPD5 RAB11FIP2 LIPT1 INTU ANXA13 KLF12 SAT2 GAL3ST2 VAMP8 FKBPL AQP11 TRAP1 PMPCB TM7SF3 RBM39 BRI3 KDR ZFP748 NAP1L1 DHRS1 LRRC56 WDR20A STXBP2 KLF1 UFC1 CCDC16 9230114K14RIK RWDD3 2610528K11RIK ACO1 CABLES1 LOC100047214 YARS2 LYPLA1 KALRN GYK ZFP787 ZFP655 RABEPK ZFP650 4732466D17RIK EXOSC4 WDR42A GPHN 2610528J11RIK 1110003E01RIK MDH1 1200014M14RIK AW209491 MUT 1700123L14RIK 2610036D13RIK PHF14 RBM3 MSL1 PHF21A ARL10 INSR JADE2 P2RX7 LINC00662 CCDC101 PPM1B KANSL1L CRYZL1 ANAPC16 TMCC1 CDH8 RBM11 CNPY2 HSPA1L CUL2 PLBD2 LARP7 TECPR2 ZNF302 CUX1 MOB2 CYTH2 SEC22C EIF4E3 ROBO2 ADAMTS9-AS2 CXXC1 LINC01314 ATF7 ATP5F1COX15 TMEM30A NSMCE4A TM2D2 RHBDD3 ATXN2 NFS1 3110001I20RIK BC038156 C330002I19RIK ZFYVE20 POLI TOMM70A LOC100047782 2410012H22RIK RILP A230062G08RIK PTTG1IP RAB1 AFAP1L1 LYRM5 2310026E23RIK SLC7A6OS MAT2B 4932438A13RIK LRRC8A SMO NUPL2 # Python\ngget.enrichr( genes = [ \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\", \"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\" ], database = \"ChEA_2022\", background_list = [ \"NSUN3\",\"POLRMT\",\"NLRX1\",\"SFXN5\",\"ZC3H12C\",\"SLC25A39\",\"ARSG\", \"DEFB29\",\"PCMTD2\",\"ACAA1A\",\"LRRC1\",\"2810432D09RIK\",\"SEPHS2\", \"SAC3D1\",\"TMLHE\",\"LOC623451\",\"TSR2\",\"PLEKHA7\",\"GYS2\",\"ARHGEF12\", \"HIBCH\",\"LYRM2\",\"ZBTB44\",\"ENTPD5\",\"RAB11FIP2\",\"LIPT1\", \"INTU\",\"ANXA13\",\"KLF12\",\"SAT2\",\"GAL3ST2\",\"VAMP8\",\"FKBPL\", \"AQP11\",\"TRAP1\",\"PMPCB\",\"TM7SF3\",\"RBM39\",\"BRI3\",\"KDR\",\"ZFP748\", \"NAP1L1\",\"DHRS1\",\"LRRC56\",\"WDR20A\",\"STXBP2\",\"KLF1\",\"UFC1\", \"CCDC16\",\"9230114K14RIK\",\"RWDD3\",\"2610528K11RIK\",\"ACO1\", \"CABLES1\", \"LOC100047214\",\"YARS2\",\"LYPLA1\",\"KALRN\",\"GYK\", \"ZFP787\",\"ZFP655\",\"RABEPK\",\"ZFP650\",\"4732466D17RIK\",\"EXOSC4\", \"WDR42A\",\"GPHN\",\"2610528J11RIK\",\"1110003E01RIK\",\"MDH1\",\"1200014M14RIK\", \"AW209491\",\"MUT\",\"1700123L14RIK\",\"2610036D13RIK\", \"PHF14\", \"RBM3\", \"MSL1\", \"PHF21A\", \"ARL10\", \"INSR\", \"JADE2\", \"P2RX7\", \"LINC00662\", \"CCDC101\", \"PPM1B\", \"KANSL1L\", \"CRYZL1\", \"ANAPC16\", \"TMCC1\",\"CDH8\", \"RBM11\", \"CNPY2\", \"HSPA1L\", \"CUL2\", \"PLBD2\", \"LARP7\", \"TECPR2\", \"ZNF302\", \"CUX1\", \"MOB2\", \"CYTH2\", \"SEC22C\", \"EIF4E3\", \"ROBO2\", \"ADAMTS9-AS2\", \"CXXC1\", \"LINC01314\", \"ATF7\", \"ATP5F1\"\"COX15\",\"TMEM30A\",\"NSMCE4A\",\"TM2D2\",\"RHBDD3\",\"ATXN2\",\"NFS1\", \"3110001I20RIK\",\"BC038156\",\"C330002I19RIK\",\"ZFYVE20\",\"POLI\",\"TOMM70A\", \"LOC100047782\",\"2410012H22RIK\",\"RILP\",\"A230062G08RIK\", \"PTTG1IP\",\"RAB1\",\"AFAP1L1\", \"LYRM5\",\"2310026E23RIK\", \"SLC7A6OS\",\"MAT2B\",\"4932438A13RIK\",\"LRRC8A\",\"SMO\",\"NUPL2\" ], plot=True\n) → Returns hits of the input gene list given the background gene list from the transcription factor/target library ChEA 2022 . In Python, plot=True returns a graphical overview of the results: alt text Generate a KEGG pathway image with the genes from the enrichment analysis highlighted: This feature is available thanks to a PR by Noriaki Sato . gget enrichr -db pathway --kegg_out kegg.png --kegg_rank 1 ZBP1 IRF3 RIPK1 # Python\ngget.enrichr([\"ZBP1\", \"IRF3\", \"RIPK1\"], database=\"pathway\", kegg_out=\"kegg.png\", kegg_rank=1) → In addition to the standard gget enrichr output, the kegg_out argument saves an image with the genes from the enrichment analysis highlighted in the KEGG pathway: kegg The following example was submitted by Dylan Lawless via PR : Use gget enrichr in R and create a similar plot using ggplot . NOTE the switch of axes compared to the Python plot. system(\"pip install gget\")\ninstall.packages(\"reticulate\")\nlibrary(reticulate)\ngget <- import(\"gget\") # Perform enrichment analysis on a list of genes\ndf <- gget$enrichr(list(\"ACE2\", \"AGT\", \"AGTR1\"), database = \"ontology\") # Count number of overlapping genes\ndf$overlapping_genes_count <- lapply(df$overlapping_genes, length) |> as.numeric() # Only keep the top 15 results\ndf <- df[1:15, ] # Plot\nlibrary(ggplot2) df |> ggplot() + geom_bar(aes( x = -log10(adj_p_val), y = reorder(path_name, -adj_p_val) ), stat = \"identity\", fill = \"lightgrey\", width = 0.5, color = \"black\") + geom_text( aes( y = path_name, x = (-log10(adj_p_val)), label = overlapping_genes_count ), nudge_x = 0.75, show.legend = NA, color = \"red\" ) + geom_text( aes( y = Inf, x = Inf, hjust = 1, vjust = 1, label = \"# of overlapping genes\" ), show.legend = NA, color = \"red\" ) + geom_vline(linetype = \"dotted\", linewidth = 1, xintercept = -log10(0.05)) + ylab(\"Pathway name\") + xlab(\"-log10(adjusted P value)\")","breadcrumbs":"gget enrichr » Examples","id":"47","title":"Examples"},"48":{"body":"Using gget enrichr with background genes","breadcrumbs":"gget enrichr » Tutorials","id":"48","title":"Tutorials"},"49":{"body":"If you use gget enrichr in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Chen EY, Tan CM, Kou Y, Duan Q, Wang Z, Meirelles GV, Clark NR, Ma'ayan A. Enrichr: interactive and collaborative HTML5 gene list enrichment analysis tool. BMC Bioinformatics. 2013; 128(14). https://doi.org/10.1186/1471-2105-14-128 Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, Koplev S, Jenkins SL, Jagodnik KM, Lachmann A, McDermott MG, Monteiro CD, Gundersen GW, Ma'ayan A. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Research. 2016; gkw377. doi: 10.1093/nar/gkw377 Xie Z, Bailey A, Kuleshov MV, Clarke DJB., Evangelista JE, Jenkins SL, Lachmann A, Wojciechowicz ML, Kropiwnicki E, Jagodnik KM, Jeon M, & Ma’ayan A. Gene set knowledge discovery with Enrichr. Current Protocols, 1, e90. 2021. doi: 10.1002/cpz1.90 . If working with non-human/mouse datasets, please also cite: Kuleshov MV, Diaz JEL, Flamholz ZN, Keenan AB, Lachmann A, Wojciechowicz ML, Cagan RL, Ma'ayan A. modEnrichr: a suite of gene set enrichment analysis tools for model organisms. Nucleic Acids Res. 2019 Jul 2;47(W1):W183-W190. doi: 10.1093/nar/gkz347 . PMID: 31069376; PMCID: PMC6602483.","breadcrumbs":"gget enrichr » References","id":"49","title":"References"},"5":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Predict the 3D structure of a protein from its amino acid sequence using a simplified version of DeepMind ’s AlphaFold2 originally released and benchmarked for AlphaFold Colab . Returns: Predicted structure (PDB) and alignment error (json). Before using gget alphafold for the first time: Install the third-party dependency openmm v7.5.1 (or v7.7.0 for Python >= 3.10) by running the following command from the command line: conda install -qy conda==4.13.0 && conda install -qy -c conda-forge openmm=7.5.1 (replace with openmm=7.7.0 for Python >= 3.10) Recommendation: Follow with conda update -qy conda to update conda to the latest version afterwards. Run gget setup alphafold / gget.setup(\"alphafold\") once (also see gget setup ). Running gget setup alphafold / gget.setup(\"alphafold\") will download and install the latest version of AlphaFold2 hosted on the AlphaFold GitHub Repo . You can rerun this command any time to update the software after a new AlphaFold release. Positional argument sequence Amino acid sequence (str), or list of sequences ( gget alphafold will automatically use the multimer model if multiple sequences are passed ), or path to FASTA file. Optional arguments -mr --multimer_recycles The multimer model will continue recycling until the predictions stop changing, up to the limit set here. Default: 3. For higher accuracy, at the potential cost of longer inference times, set this to 20. -o --out Path to folder to save prediction results in (str). Default: \"./[date_time]_gget_alphafold_prediction\". Flags -mfm --multimer_for_monomer Use multimer model for a monomer. -r --relax AMBER relax the best model. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. plot Python only. plot=True provides an interactive, 3D graphical overview of the predicted structure and alignment quality using py3Dmol and matplotlib (default: True). show_sidechains Python only. show_sidechains=True includes side chains in the plot (default: True).","breadcrumbs":"gget alphafold » gget alphafold 🪢","id":"5","title":"gget alphafold 🪢"},"50":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Generates natural language text based on a given prompt using the OpenAI API's 'openai.ChatCompletion.create' endpoint. This module, including its source code, documentation and unit tests, were partly written by OpenAI's Chat-GTP3. NOTE: OpenAI API calls are only 'free' for the first three months after generating your OpenAI Account (OpenAI provides a $5 credit that expires). You can define a hard monthly billing limit (e.g. $1) here . See their pricing and FAQ here . Get your OpenAI API key here . Returns: A string containing the generated text. Before using gget gpt for the first time, run gget setup gpt / gget.setup(\"gpt\") once (also see gget setup ). Positional argument prompt The input prompt to generate text from (str). api_key Your OpenAI API key (str) ( get your API key ). Optional arguments -m --model The name of the GPT model to use for generating the text (str). Default is \"gpt-3.5-turbo\". See https://platform.openai.com/docs/models/gpt-4 for more information on the available models. -temp --temperature Value between 0 and 2 that controls the level of randomness and creativity in the generated text (float). Higher values result in more creative and varied text. Default is 1. -tp --top_p Controls the diversity of the generated text as an alternative to sampling with temperature (float). Higher values result in more diverse and unexpected text. Default is 1. Note: OpenAI recommends altering this or temperature but not both. -s --stop A sequence of tokens to mark the end of the generated text (str). Default is None. -mt --max_tokens Controls the maximum length of the generated text, in tokens (int). Default is 200. -pp --presence_penalty Number between -2.0 and 2.0. Higher values result increase the model's likelihood to talk about new topics (float). Default is 0. -fp --frequency_penalty Number between -2.0 and 2.0. Higher values decrease the model's likelihood to repeat the same line verbatim (float). Default is 0. -lb --logit_bias A dictionary that specifies a bias towards certain tokens in the generated text (dict). Default is None. -o --out If provided, saves the generated text to a file with the specified path (str). Default: Standard out.","breadcrumbs":"gget gpt » gget gpt 💬","id":"50","title":"gget gpt 💬"},"51":{"body":"gget gpt \"How are you today GPT?\" your_api_token # Python\nprint(gget.gpt(\"How are you today GPT?\", \"your_api_token\"))","breadcrumbs":"gget gpt » Example","id":"51","title":"Example"},"52":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch extensive gene and transcript metadata from Ensembl , UniProt , and NCBI using Ensembl IDs. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument ens_ids One or more Ensembl IDs (WormBase and Flybase IDs are also supported). Optional arguments -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -n --ncbi TURN OFF results from NCBI . Python: ncbi=False prevents data retrieval from NCBI (default: True). -u --uniprot TURN OFF results from UniProt . Python: uniprot=False prevents data retrieval from UniProt (default: True). -pdb --pdb INCLUDE PDB IDs in output (might increase runtime). Python: pdb=True includes PDB IDs in the results (default: False). -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget info » gget info 💡","id":"52","title":"gget info 💡"},"53":{"body":"gget info ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.info([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Returns extensive information about each requested Ensembl ID: uniprot_id ncbi_gene_id primary_gene_name synonyms protein_names ensembl_description uniprot_description ncbi_description biotype canonical_transcript ... ENSG00000034713 P60520 11345 GABARAPL2 [ATG8, ATG8C, FLC3A, GABARAPL2, GATE-16, GATE16, GEF-2, GEF2] Gamma-aminobutyric acid receptor-associated protein like 2 (GABA(A) receptor-associated protein-like 2)... GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] FUNCTION: Ubiquitin-like modifier involved in intra- Golgi traffic (By similarity). Modulates intra-Golgi transport through coupling between NSF activity and ... Enables ubiquitin protein ligase binding activity. Involved in negative regulation of proteasomal protein catabolic process and protein... protein_coding ENST00000037243.7 ... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ... More examples","breadcrumbs":"gget info » Example","id":"53","title":"Example"},"54":{"body":"If you use gget info in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606. Sayers EW, Beck J, Bolton EE, Brister JR, Chan J, Comeau DC, Connor R, DiCuccio M, Farrell CM, Feldgarden M, Fine AM, Funk K, Hatcher E, Hoeppner M, Kane M, Kannan S, Katz KS, Kelly C, Klimke W, Kim S, Kimchi A, Landrum M, Lathrop S, Lu Z, Malheiro A, Marchler-Bauer A, Murphy TD, Phan L, Prasad AB, Pujar S, Sawyer A, Schmieder E, Schneider VA, Schoch CL, Sharma S, Thibaud-Nissen F, Trawick BW, Venkatapathi T, Wang J, Pruitt KD, Sherry ST. Database resources of the National Center for Biotechnology Information. Nucleic Acids Res. 2024 Jan 5;52(D1):D33-D43. doi: 10.1093/nar/gkad1044 . PMID: 37994677; PMCID: PMC10767890. The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"gget info » References","id":"54","title":"References"},"55":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Align multiple nucleotide or amino acid sequences to each other using Muscle5 . Return format: ClustalW formatted standard out or aligned FASTA (.afa). Positional argument fasta List of sequences or path to FASTA or .txt file containing the nucleotide or amino acid sequences to be aligned. Optional arguments -o --out Path to the aligned FASTA file the results will be saved in, e.g. path/to/directory/results.afa. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -s5 --super5 Aligns input using the Super5 algorithm instead of the Parallel Perturbed Probcons (PPP) algorithm to decrease time and memory. Use for large inputs (a few hundred sequences). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget muscle » gget muscle 🦾","id":"55","title":"gget muscle 🦾"},"56":{"body":"gget muscle MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS # Python\ngget.muscle([\"MSSSSWLLLSLVAVTAAQSTIEEQAKTFLDKFNHEAEDLFYQSSLAS\", \"MSSSSWLLLSLVEVTAAQSTIEQQAKTFLDKFHEAEDLFYQSLLAS\"]) gget muscle fasta.fa # Python\ngget.muscle(\"fasta.fa\") → Returns an overview of the aligned sequences with ClustalW coloring. (To return an aligned FASTA (.afa) file, use --out argument (or save=True in Jupyter Lab/Google Colab).) In the above example, the 'fasta.fa' includes several sequences to be aligned (e.g. isoforms returned from gget seq). alt text You can also view aligned fasta files returned by gget.muscle using programs like alv , as shown below: # Python\n!pip install biopython\n!pip install alv\nfrom Bio import AlignIO\nimport alv gget.muscle(\"fasta.fa\", out=\"fasta_aligned.afa\")\nmsa = AlignIO.read(\"fasta_aligned.afa\", \"fasta\")\nalv.view(msa) More examples","breadcrumbs":"gget muscle » Example","id":"56","title":"Example"},"57":{"body":"If you use gget muscle in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Edgar RC (2021), MUSCLE v5 enables improved estimates of phylogenetic tree confidence by ensemble bootstrapping, bioRxiv 2021.06.20.449169. https://doi.org/10.1101/2021.06.20.449169","breadcrumbs":"gget muscle » References","id":"57","title":"References"},"58":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Takes in nucleotide sequences and mutations (in standard mutation annotation and returns mutated versions of the input sequences according to the provided mutations. Return format: Saves mutated sequences in FASTA format (or returns a list containing the mutated sequences if out=None). This module was written by Joseph Rich . Positional argument sequences Path to the FASTA file containing the sequences to be mutated, e.g., 'path/to/seqs.fa'. Sequence identifiers following the '>' character must correspond to the identifiers in the seq_ID column of mutations. Example format of the FASTA file: >seq1 (or ENSG00000106443) ACTGCGATAGACT >seq2 AGATCGCTAG Alternatively: Input sequence(s) as a string or list, e.g. 'AGCTAGCT'. NOTE: Only the letters until the first space or dot will be used as sequence identifiers - Version numbers of Ensembl IDs will be ignored. NOTE: When the sequences input is a genome fasta file, also see the gtf argument below. Required arguments -m --mutations Path to the csv or tsv file (e.g., 'path/to/mutations.csv') or data frame (DataFrame object) containing information about the mutations in the following format (the 'notes' and 'mut_ID' columns are optional): mutation mut_ID seq_ID notes c.2C>T mut1 seq1 -> Apply mutation 1 to sequence 1 c.9_13inv mut2 seq2 -> Apply mutation 2 to sequence 2 c.9_13inv mut2 seq4 -> Apply mutation 2 to sequence 4 c.9_13delinsAAT mut3 seq4 -> Apply mutation 3 to sequence 4 ... ... ... 'mutation' = Column containing the mutations to be performed written in standard mutation annotation 'mut_ID' = Column containing the identifier for each mutation 'seq_ID' = Column containing the identifiers of the sequences to be mutated (must correspond to the string following the '>' character in the 'sequences' FASTA file; do NOT include spaces or dots) Alternatively: Input mutation(s) as a string or list, e.g., 'c.2C>T'. If a list is provided, the number of mutations must equal the number of input sequences. For use from the terminal (bash): Enclose individual mutation annotations in quotation marks to prevent parsing errors. Optional input-related arguments -mc --mut_column Name of the column containing the mutations to be performed in mutations. Default: 'mutation'. -sic --seq_id_column Name of the column containing the IDs of the sequences to be mutated in mutations. Default: 'seq_ID'. -mic --mut_id_column Name of the column containing the IDs of each mutation in mutations. Default: Same as mut_column. -gtf --gtf Path to a .gtf file. When providing a genome fasta file as input for 'sequences', you can provide a .gtf file here and the input sequences will be defined according to the transcript boundaries, e.g. 'path/to/genome_annotation.gtf'. Default: None -gtic --gtf_transcript_id_column Column name in the input mutations file containing the transcript ID. In this case, column seq_id_column should contain the chromosome number. Required when gtf is provided. Default: None Optional mutant sequence generation/filtering arguments -k --k Length of sequences flanking the mutation. Default: 30. If k > total length of the sequence, the entire sequence will be kept. -msl --min_seq_len Minimum length of the mutant output sequence, e.g. 100. Mutant sequences smaller than this will be dropped. Default: None -ma --max_ambiguous Maximum number of 'N' (or 'n') characters allowed in the output sequence, e.g. 10. Default: None (no ambiguous character filter will be applied) Optional mutant sequence generation/filtering flags -ofr --optimize_flanking_regions Removes nucleotides from either end of the mutant sequence to ensure (when possible) that the mutant sequence does not contain any k-mers also found in the wildtype/input sequence. -rswk --remove_seqs_with_wt_kmers Removes output sequences where at least one k-mer is also present in the wildtype/input sequence in the same region. When used with --optimize_flanking_regions, only sequences for which a wildtype k-mer is still present after optimization will be removed. -mio --merge_identical_off Do not merge identical mutant sequences in the output (by default, identical sequences will be merged by concatenating the sequence headers for all identical sequences). Optional arguments to generate additional output This output is activated using the --update_df flag and will be stored in a copy of the mutations DataFrame. -udf_o --update_df_out Path to output csv file containing the updated DataFrame, e.g. 'path/to/mutations_updated.csv'. Only valid when used with --update_df. Default: None -> the new csv file will be saved in the same directory as the mutations DataFrame with appendix '_updated' -ts --translate_start (int or str) The position in the input nucleotide sequence to start translating, e.g. 5. If a string is provided, it should correspond to a column name in mutations containing the open reading frame start positions for each sequence/mutation. Only valid when used with --translate. Default: translates from the beginning of each sequence -te --translate_end (int or str) The position in the input nucleotide sequence to end translating, e.g. 35. If a string is provided, it should correspond to a column name in mutations containing the open reading frame end positions for each sequence/mutation. Only valid when used with --translate. Default: translates until the end of each sequence Optional flags to modify additional output -udf --update_df Updates the input mutations DataFrame to include additional columns with the mutation type, wildtype nucleotide sequence, and mutant nucleotide sequence (only valid if mutations is a .csv or .tsv file). -sfs --store_full_sequences Includes the complete wildtype and mutant sequences in the updated mutations DataFrame (not just the sub-sequence with k-length flanks). Only valid when used with --update_df. -tr --translate Adds additional columns to the updated mutations DataFrame containing the wildtype and mutant amino acid sequences. Only valid when used with --store_full_sequences. Optional general arguments -o --out Path to output FASTA file containing the mutated sequences, e.g., 'path/to/output_fasta.fa'. Default: None -> returns a list of the mutated sequences to standard out. The identifiers (following the '>') of the mutated sequences in the output FASTA will be '>[seq_ID]_[mut_ID]'. Optional general flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget mutate » gget mutate 🧟","id":"58","title":"gget mutate 🧟"},"59":{"body":"gget mutate ATCGCTAAGCT -m 'c.4G>T' # Python\ngget.mutate(\"ATCGCTAAGCT\", \"c.4G>T\") → Returns ATCTCTAAGCT. List of sequences with a mutation for each sequence provided in a list: gget mutate ATCGCTAAGCT TAGCTA -m 'c.4G>T' 'c.1_3inv' -o mut_fasta.fa # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], [\"c.4G>T\", \"c.1_3inv\"], out=\"mut_fasta.fa\") → Saves 'mut_fasta.fa' file containing: >seq1_mut1 ATCTCTAAGCT >seq2_mut2 GATCTA One mutation applied to several sequences with adjusted k: gget mutate ATCGCTAAGCT TAGCTA -m 'c.1_3inv' -k 3 # Python\ngget.mutate([\"ATCGCTAAGCT\", \"TAGCTA\"], \"c.1_3inv\", k=3) → Returns ['CTAGCT', 'GATCTA']. Add mutations to an entire genome with extended output Main input: mutation information as a mutations CSV (by having seq_id_column contain chromosome information, and mut_column contain mutation information with respect to genome coordinates) the genome as the sequences file Since we are passing the path to a gtf file to the gtf argument, transcript boundaries will be respected (the genome will be split into transcripts). gtf_transcript_id_column specifies the name of the column in mutations containing the transcript IDs corresponding to the transcript IDs in the gtf file. The optimize_flanking_regions argument maximizes the length of the resulting mutation-containing sequences while maintaining specificity (no wildtype k-mer will be retained). update_df activates the creation of a new CSV file with updated information about each input and output sequence. This new CSV file will be saved as update_df_out. Since store_full_sequences is activated, this new CSV file will not only contain the output sequences (restricted in size by flanking regiong of size k), but also the complete input and output sequences. This allows us to observe the mutation in the context of the entire sequence. Lastly, we are also adding the translated versions of the complete sequences by adding the with the translate flag, so we can observe how the resulting amino acid sequence is changed. The translate_start and translate_end arguments specify the names of the columns in mutations that contain the start and end positions of the open reading frame (start and end positions for translating the nucleotide sequence to an amino acid sequence), respectively. gget mutate \\ -m mutations_input.csv \\ -o mut_fasta.fa \\ -k 4 \\ -sic Chromosome \\ -mic Mutation \\ -gtf genome_annotation.gtf \\ -gtic Ensembl_Transcript_ID \\ -ofr \\ -update_df \\ -udf_o mutations_updated.csv \\ -sfs \\ -tr \\ -ts Translate_Start \\ -te Translate_End \\ genome_reference.fa # Python\ngget.mutate(sequences=\"genome_reference.fa\", mutations=\"mutations_input.csv\", out=\"mut_fasta.fa\", k=4, seq_id_column=\"Chromosome\", mut_column=\"Mutation\", gtf=\"genome_annotation.gtf\", gtf_transcript_id_column=\"Ensembl_Transcript_ID\", optimize_flanking_regions=True, update_df=True, update_df_out=\"mutations_updated.csv\", store_full_sequences=True, translate=True, translate_start=\"Translate_Start\", translate_end=\"Translate_End\") → Takes as input 'mutations_input.csv' file containing: | Chromosome | Mutation | Ensembl_Transcript_ID | Translate_Start | Translate_End |\n|------------|-------------------|------------------------|-----------------|---------------|\n| 1 | g.224411A>C | ENST00000193812 | 0 | 100 |\n| 8 | g.25111del | ENST00000174411 | 0 | 294 |\n| X | g.1011_1012insAA | ENST00000421914 | 9 | 1211 | → Saves 'mut_fasta.fa' file containing: >1:g.224411A>C TGCTCTGCT >8:g.25111del GAGTCGAT\n>X:g.1011_1012insAA\nTTAGAACTT → Saves 'mutations_updated.csv' file containing: | Chromosome | Mutation | Ensembl_Transcript_ID | mutation_type | wt_sequence | mutant_sequence | wt_sequence_full | mutant_sequence_full | wt_sequence_aa_full | mutant_sequence_aa_full |\n|------------|-------------------|------------------------|---------------|-------------|-----------------|-------------------|----------------------|---------------------|-------------------------|\n| 1 | g.224411A>C | ENSMUST00000193812 | Substitution | TGCTATGCT | TGCTCTGCT | ...TGCTATGCT... | ...TGCTCTGCT... | ...CYA... | ...CSA... |\n| 8 | g.25111del | ENST00000174411 | Deletion | GAGTCCGAT | GAGTCGAT | ...GAGTCCGAT... | ...GAGTCGAT... | ...ESD... | ...ES... |\n| X | g.1011_1012insAA | ENST00000421914 | Insertion | TTAGCTT | TTAGAACTT | ...TTAGCTT... | ...TTAGAACTT... | ...A... | ...EL... |","breadcrumbs":"gget mutate » Examples","id":"59","title":"Examples"},"6":{"body":"# Generate new prediction from amino acid sequence\ngget alphafold MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Find similar sequences deposited on the PDB for comparative analysis\ngget blast --database pdbaa MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH # Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality\ngget pdb 3UQ3 -o 3UQ3.pdb\ngget pdb 2K42 -o 2K42.pdb # Python\ngget.alphafold(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\") # Find similar sequences deposited on the PDB for comparative analysis\ngget.blast(\"MAAHKGAEHHHKAAEHHEQAAKHHHAAAEHHEKGEHEQAAHHADTAYAHHKHAEEHAAQAAKHDAEHHAPKPH\", database=\"pdbaa\") # Fetch the PDB files of similar structures returned by gget blast for comparison, to get a measure for model quality\ngget.pdb(\"3UQ3\", save=True)\ngget.pdb(\"2K42\", save=True) → gget alphafold returns the predicted structure (PDB) and predicted alignment error (.json) in a new folder (\"./[date_time]_gget_alphafold_prediction\"). The use case above exemplifies how to use gget blast and gget pdb for a comparative analysis of the new prediction. PDB files can be viewed interactively in 3D online , or using programs like PyMOL or Blender . To compare two PDB files, you can use this website . The Python interface also returns interactive plots , which can be generated from the PDB and JSON as described in the gget alphafold FAQ Q4.","breadcrumbs":"gget alphafold » Example","id":"6","title":"Example"},"60":{"body":"If you use gget mutate in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836","breadcrumbs":"gget mutate » References","id":"60","title":"References"},"61":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch associated diseases or drugs from OpenTargets using Ensembl IDs. Return format: JSON/CSV (command-line) or data frame (Python). This module was written by Sam Wagenaar . Positional argument ens_id Ensembl gene ID, e.g ENSG00000169194. Optional arguments -r --resource Defines the type of information to return in the output. Default: 'diseases'. Possible resources are: Resource Return Value Valid Filters Sources diseases Associated diseases None Various: Open Targets ChEMBL Europe PMC etc. drugs Associated drugs disease_id ChEMBL tractability Tractability data None Open Targets pharmacogenetics Pharmacogenetic responses drug_id PharmGKB expression Gene expression data (by tissues, organs, and anatomical systems) tissue_idanatomical_systemorgan ExpressionAtlas HPA GTEx depmap DepMap gene→disease-effect data. tissue_id DepMap Portal interactions Protein⇄protein interactions protein_a_idprotein_b_idgene_b_id Open Targets IntAct Signor Reactome String -l --limit Limit the number of results, e.g 10. Default: No limit. Note: Not compatible with the tractability and depmap resources. -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Python: save=True will save the output in the current working directory. Optional filter arguments -fd --filter_disease disease_id Filter by disease ID, e.g. 'EFO_0000274'. Only valid for the drugs resource. -fc --filter_drug drug_id Filter by drug ID, e.g. 'CHEMBL1743081'. Only valid for the pharmacogenetics resource. -ft --filter_tissue tissue_id Filter by tissue ID, e.g. 'UBERON_0000473'. Only valid for the expression and depmap resources. -fa --filter_anat_sys Filter by anatomical system, e.g. 'nervous system'. Only valid for the expression resource. -fo --filter_organ anatomical_system Filter by organ, e.g. 'brain'. Only valid for the expression resource. -fpa --filter_protein_a protein_a_id Filter by the protein ID of the first protein in the interaction, e.g. 'ENSP00000304915'. Only valid for the interactions resource. -fpb --filter_protein_b protein_b_id Filter by the protein ID of the second protein in the interaction, e.g. 'ENSP00000379111'. Only valid for the interactions resource. -fgb --filter_gene_b gene_b_id Filter by the gene ID of the second protein in the interaction, e.g. 'ENSG00000077238'. Only valid for the interactions resource. filters Python only. A dictionary of filters, e.g. {'disease_id': ['EFO_0000274', 'HP_0000964']} filter_mode Python only. filter_mode='or' combines filters of different IDs with OR logic. filter_mode='and' combines filters of different IDs with AND logic (default). Flags -csv --csv Command-line only. Returns the output in CSV format, instead of JSON format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. -or --or Command-line only. Filters are combined with OR logic. Default: AND logic. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget opentargets » gget opentargets 🎯","id":"61","title":"gget opentargets 🎯"},"62":{"body":"Get associated diseases for a specific gene: gget opentargets ENSG00000169194 -r diseases -l 1 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='diseases', limit=1) → Returns the top disease associated with the gene ENSG00000169194. id name description score EFO_0000274 atopic eczema A chronic inflammatory genetically determined disease of the skin ... 0.66364347241831 Get associated drugs for a specific gene: gget opentargets ENSG00000169194 -r drugs -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='drugs', limit=2) → Returns the top 2 drugs associated with the gene ENSG00000169194. id name type action_mechanism description synonyms trade_names disease_id disease_name trial_phase trial_status trial_ids approved CHEMBL1743081 TRALOKINUMAB Antibody Interleukin‑13 inhibitor Antibody drug with a maximum clinical trial phase of IV ... ['CAT-354', 'Tralokinumab'] ['Adbry', 'Adtralza'] EFO_0000274 atopic eczema 4 [] True CHEMBL4297864 CENDAKIMAB Antibody Interleukin‑13 inhibitor Antibody drug with a maximum clinical trial phase of III ... [ABT-308, Abt-308, CC-93538, Cendakimab, RPC-4046] [] EFO_0004232 eosinophilic esophagitis 3 Recruiting [NCT04991935] False Note: Returned trial_ids are ClinicalTrials.gov identifiers Get tractability data for a specific gene: gget opentargets ENSG00000169194 -r tractability # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='tractability') → Returns tractability data for the gene ENSG00000169194. label modality High-Quality Pocket Small molecule Approved Drug Antibody GO CC high conf Antibody UniProt loc med conf Antibody UniProt SigP or TMHMM Antibody Get pharmacogenetic responses for a specific gene: gget opentargets ENSG00000169194 -r pharmacogenetics -l 1 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='pharmacogenetics', limit=1) → Returns pharmacogenetic responses for the gene ENSG00000169194. rs_id genotype_id genotype variant_consequence_id variant_consequence_label drugs phenotype genotype_annotation response_category direct_target evidence_level source literature rs1295686 5_132660151_T_T,T TT SO:0002073 no_sequence_alteration id name0 None hepatitis vaccines increased risk for non‑immune response to the hepatitis B vaccine Patients with the TT genotype may be at increased risk for non-immune response to the hepatitis B vaccine... efficacy False 3 pharmgkb [21111021] Note: Returned literature ids are Europe PMC identifiers Get tissues where a gene is most expressed: gget opentargets ENSG00000169194 -r expression -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='expression', limit=2) → Returns the top 2 tissues where the gene ENSG00000169194 is most expressed. tissue_id tissue_name rna_zscore rna_value rna_unit rna_level anatomical_systems organs UBERON_0000473 testis 5 1026 3 [reproductive system] [reproductive organ, reproductive structure] CL_0000542 EBV‑transformed lymphocyte 1 54 2 [hemolymphoid system, immune system, lymphoid system] [immune organ] Get DepMap gene-disease effect data for a specific gene: gget opentargets ENSG00000169194 -r depmap # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='depmap') → Returns DepMap gene-disease effect data for the gene ENSG00000169194. depmap_id expression effect tissue_id tissue_name cell_line_name disease_cell_line_id disease_name mutation ACH‑001532 0.176323 0.054950 UBERON_0002113 kidney JMU-RTK-2 None Rhabdoid Cancer None Get protein-protein interactions for a specific gene: gget opentargets ENSG00000169194 -r interactions -l 2 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='interactions', limit=2) → Returns the top 2 protein-protein interactions for the gene ENSG00000169194. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000379111 ENSG00000077238 IL4R unspecified role 9606 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000360730 ENSG00000131724 IL13RA1 unspecified role 9606 Get protein-protein interactions for a specific gene, filtering by protein and gene IDs: gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 # Python\nimport gget\ngget.opentargets('ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': 'ENSG00000077238'}) → Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 and the second gene is ENSG00000077238. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b None 3 reactome P35225 ENSG00000169194 IL13 unspecified role 9606 P24394 ENSG00000077238 IL4R unspecified role 9606 None 2 signor P35225 ENSG00000169194 IL13 regulator 9606 P24394 ENSG00000077238 IL4R regulator target 9606 Get protein-protein interactions for a specific gene, filtering by protein or gene IDs: gget opentargets ENSG00000169194 -r interactions -fpa P35225 --filter_gene_b ENSG00000077238 ENSG00000111537 --or -l 5 # Python\nimport gget\ngget.opentargets( 'ENSG00000169194', resource='interactions', filters={'protein_a_id': 'P35225', 'gene_b_id': ['ENSG00000077238', 'ENSG00000111537']}, filter_mode='or', limit=5\n) → Returns protein-protein interactions for the gene ENSG00000169194, where the first protein is P35225 or the second gene is either ENSG00000077238 or ENSG00000111537. evidence_score evidence_count source_db protein_a_id gene_a_id gene_a_symbol role_a taxon_a protein_b_id gene_b_id gene_b_symbol role_b taxon_b 0.999 3 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000379111 ENSG00000077238 IL4R unspecified role 9606 0.961 2 string ENSP00000304915 ENSG00000169194 IL13 unspecified role 9606 ENSP00000229135 ENSG00000111537 IFNG unspecified role 9606 0.800 9 intact P35225 ENSG00000169194 IL13 unspecified role 9606 Q14627 ENSG00000123496 IL13RA2 unspecified role 9606 0.740 6 intact P35225 ENSG00000169194 IL13 unspecified role 9606 P78552 ENSG00000131724 IL13RA1 unspecified role 9606 0.400 1 intact P35225 ENSG00000169194 IL13 unspecified role 9606 Q86XT9 ENSG00000149932 TMEM219 stimulator 9606 More examples","breadcrumbs":"gget opentargets » Examples","id":"62","title":"Examples"},"63":{"body":"If you use gget opentargets in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Ochoa D, Hercules A, Carmona M, Suveges D, Baker J, Malangone C, Lopez I, Miranda A, Cruz-Castillo C, Fumis L, Bernal-Llinares M, Tsukanov K, Cornu H, Tsirigos K, Razuvayevskaya O, Buniello A, Schwartzentruber J, Karim M, Ariano B, Martinez Osorio RE, Ferrer J, Ge X, Machlitt-Northen S, Gonzalez-Uriarte A, Saha S, Tirunagari S, Mehta C, Roldán-Romero JM, Horswell S, Young S, Ghoussaini M, Hulcoop DG, Dunham I, McDonagh EM. The next-generation Open Targets Platform: reimagined, redesigned, rebuilt. Nucleic Acids Res. 2023 Jan 6;51(D1):D1353-D1359. doi: 10.1093/nar/gkac1046 . PMID: 36399499; PMCID: PMC9825572.","breadcrumbs":"gget opentargets » References","id":"63","title":"References"},"64":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Query RCSB Protein Data Bank (PDB) for the protein structure/metadata of a given PDB ID. Return format: Resource 'pdb' is returned in PDB format. All other resources are returned in JSON format. Positional argument pdb_id PDB ID to be queried, e.g. '7S7U'. Optional arguments -r --resource Defines type of information to be returned. One of the following: 'pdb': Returns the protein structure in PDB format (default). 'entry': Information about PDB structures at the top level of PDB structure hierarchical data organization. 'pubmed': Get PubMed annotations (data integrated from PubMed) for a given entry's primary citation. 'assembly': Information about PDB structures at the quaternary structure level. 'branched_entity': Get branched entity description (define entity ID as 'identifier'). 'nonpolymer_entity': Get non-polymer entity data (define entity ID as 'identifier'). 'polymer_entity': Get polymer entity data (define entity ID as 'identifier'). 'uniprot': Get UniProt annotations for a given macromolecular entity (define entity ID as 'identifier'). 'branched_entity_instance': Get branched entity instance description (define chain ID as 'identifier'). 'polymer_entity_instance': Get polymer entity instance (a.k.a chain) data (define chain ID as 'identifier'). 'nonpolymer_entity_instance': Get non-polymer entity instance description (define chain ID as 'identifier'). -i --identifier Can be used to define assembly, entity or chain ID (default: None). Assembly/entity IDs are numbers (e.g. 1), and chain IDs are letters (e.g. 'A'). -o --out Path to the file the results will be saved in, e.g. path/to/directory/7S7U.pdb or path/to/directory/7S7U_entry.json. Default: Standard out. Python: save=True will save the output in the current working directory.","breadcrumbs":"gget pdb » gget pdb 🔮","id":"64","title":"gget pdb 🔮"},"65":{"body":"gget pdb 7S7U -o 7S7U.pdb # Python\ngget.pdb(\"7S7U\", save=True) → Saves the structure of 7S7U in PDB format as '7S7U.pdb' in the current working directory. Find PDB crystal structures for a comparative analysis of protein structure: # Find PDB IDs associated with an Ensembl ID gget info ENSG00000130234 # Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, # you will likely find more PDB entries by BLASTing the sequence agains the PDB. # Get the amino acid sequence of a transcript from an Ensembl ID\ngget seq --translate ENSG00000130234 -o gget_seq_results.fa # BLAST an amino acid sequence to find similar structures in the PDB\ngget blast --database pdbaa gget_seq_results.fa # Get PDB files from the PDB IDs returned by gget blast for comparative analysis\ngget pdb 7DQA -o 7DQA.pdb\ngget pdb 7CT5 -o 7CT5.pdb # Find PDB IDs associated with an Ensembl ID gget.info(\"ENSG00000130234\") # Alternatively: Since many entries in the PDB do not have linked Ensembl IDs, # you will likely find more PDB entries by BLASTing the sequence agains the PDB. # Get the amino acid sequence of a transcript from an Ensembl ID\ngget.seq(\"ENSG00000130234\", translate=True, save=True) # BLAST an amino acid sequence to find similar structures in the PDB\ngget.blast(\"gget_seq_results.fa\", database=\"pdbaa\") # Get PDB files from the PDB IDs returned by gget blast for comparative analysis\ngget.pdb(\"7DQA\", save=True)\ngget.pdb(\"7CT5\", save=True) → The use case above exemplifies how to find PDB files for comparative analysis of protein structure starting with Ensembl IDs or amino acid sequences. The fetched PDB files can also be compared to predicted structures generated by gget alphafold . PDB files can be viewed interactively in 3D online , or using programs like PyMOL or Blender . To compare two PDB files, you can use this website . More examples","breadcrumbs":"gget pdb » Examples","id":"65","title":"Examples"},"66":{"body":"If you use gget pdb in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Berman HM, Westbrook J, Feng Z, Gilliland G, Bhat TN, Weissig H, Shindyalov IN, Bourne PE. The Protein Data Bank. Nucleic Acids Res. 2000 Jan 1;28(1):235-42. doi: 10.1093/nar/28.1.235 . PMID: 10592235; PMCID: PMC102472.","breadcrumbs":"gget pdb » References","id":"66","title":"References"},"67":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch FTPs and their respective metadata (or use flag ftp to only return the links) for reference genomes and annotations from Ensembl by species. Return format: dictionary/JSON. Positional argument species Species for which the FTPs will be fetched in the format genus_species, e.g. homo_sapiens. Supports all available vertebrate and invertebrate (plants, fungi, protists, and invertebrate metazoa) genomes from Ensembl, except bacteria. Note: Not required when using flags --list_species or --list_iv_species. Supported shortcuts: 'human', 'mouse', 'human_grch37' (accesses the GRCh37 genome assembly) Optional arguments -w --which Defines which results to return. Default: 'all' -> Returns all available results. Possible entries are one or a combination (as comma-separated list) of the following: 'gtf' - Returns the annotation (GTF). 'cdna' - Returns the trancriptome (cDNA). 'dna' - Returns the genome (DNA). 'cds' - Returns the coding sequences corresponding to Ensembl genes. (Does not contain UTR or intronic sequence.) 'cdrna' - Returns transcript sequences corresponding to non-coding RNA genes (ncRNA). 'pep' - Returns the protein translations of Ensembl genes. -r --release Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: latest Ensembl release. -od --out_dir Path to the directory where the FTPs will be saved, e.g. path/to/directory/. Default: Current working directory. -o --out Path to the JSON file the results will be saved in, e.g. path/to/directory/results.json. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -l --list_species Lists all available vertebrate species. (Python: combine with species=None.) -liv --list_iv_species Lists all available invertebrate species. (Python: combine with species=None.) -ftp --ftp Returns only the requested FTP links. -d --download Command-line only. Downloads the requested FTPs to the directory specified by out_dir (requires curl to be installed). -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget ref » gget ref 📖","id":"67","title":"gget ref 📖"},"68":{"body":"Use gget ref in combination with kallisto | bustools to build a reference index: kb ref -i INDEX -g T2G -f1 FASTA $(gget ref --ftp -w dna,gtf homo_sapiens) → kb ref builds a reference index using the latest DNA and GTF files of species Homo sapiens passed to it by gget ref. List all available genomes from Ensembl release 103: gget ref --list_species -r 103 # Python\ngget.ref(species=None, list_species=True, release=103) → Returns a list with all available genomes (checks if GTF and FASTAs are available) from Ensembl release 103. (If no release is specified, gget ref will always return information from the latest Ensembl release.) Get the genome reference for a specific species: gget ref -w gtf,dna homo_sapiens # Python\ngget.ref(\"homo_sapiens\", which=[\"gtf\", \"dna\"]) → Returns a JSON with the latest human GTF and FASTA FTPs, and their respective metadata, in the format: { \"homo_sapiens\": { \"annotation_gtf\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/gtf/homo_sapiens/Homo_sapiens.GRCh38.106.gtf.gz\", \"ensembl_release\": 106, \"release_date\": \"28-Feb-2022\", \"release_time\": \"23:27\", \"bytes\": \"51379459\" }, \"genome_dna\": { \"ftp\": \"http://ftp.ensembl.org/pub/release-106/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz\", \"ensembl_release\": 106, \"release_date\": \"21-Feb-2022\", \"release_time\": \"09:35\", \"bytes\": \"881211416\" } }\n} More examples","breadcrumbs":"gget ref » Examples","id":"68","title":"Examples"},"69":{"body":"If you use gget ref in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606.","breadcrumbs":"gget ref » References","id":"69","title":"References"},"7":{"body":"","breadcrumbs":"gget alphafold » Tutorials","id":"7","title":"Tutorials"},"70":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch genes and transcripts from Ensembl using free-form search terms. Results are matched based on the \"gene name\" and \"description\" sections in the Ensembl database. gget version >= 0.27.9 also includes results that match the Ensembl \"synonym\" section. Return format: JSON (command-line) or data frame/CSV (Python). Positional argument searchwords One or more free form search words, e.g. gaba nmda. (Note: Search is not case-sensitive.) Other required arguments -s --species Species or database to be searched. A species can be passed in the format 'genus_species', e.g. 'homo_sapiens' or 'arabidopsis_thaliana'. To pass a specific database, pass the name of the CORE database, e.g. 'mus_musculus_dba2j_core_105_1'. All available core databases can be found here: Vertebrates: http://ftp.ensembl.org/pub/current/mysql/ Invertebrates: http://ftp.ensemblgenomes.org/pub/current/ + select kingdom + go to mysql/ Supported shortcuts: 'human', 'mouse' Optional arguments -r --release Defines the Ensembl release number from which the files are fetched, e.g. 104. Default: None -> latest Ensembl release is used. Note: The release argument does not apply to invertebrate species (you can pass a specific core database (which includes a release number) to the species argument instead). For invertebrate species, Ensembl only stores databases from 10 releases prior to the current release. This argument is overwritten if a specific database (which includes a release number) is passed to the species argument. -t --id_type 'gene' (default) or 'transcript' Returns genes or transcripts, respectively. -ao --andor 'or' (default) or 'and' 'or': Returns all genes that INCLUDE AT LEAST ONE of the searchwords in their name/description. 'and': Returns only genes that INCLUDE ALL of the searchwords in their name/description. -l --limit Limits the number of search results, e.g. 10. Default: None. -o --out Path to the csv the results will be saved in, e.g. path/to/directory/results.csv (or .json). Default: Standard out. Python: save=True will save the output in the current working directory. Flags -csv --csv Command-line only. Returns results in CSV format. Python: Use json=True to return output in JSON format. -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed. wrap_text Python only. wrap_text=True displays data frame with wrapped text for easy reading (default: False).","breadcrumbs":"gget search » gget search 🔎","id":"70","title":"gget search 🔎"},"71":{"body":"gget search -s human gaba gamma-aminobutyric # Python\ngget.search([\"gaba\", \"gamma-aminobutyric\"], \"homo_sapiens\") → Returns all genes that contain at least one of the search words in their name or Ensembl/external reference description: ensembl_id gene_name ensembl_description ext_ref_description biotype url ENSG00000034713 GABARAPL2 GABA type A receptor associated protein like 2 [Source:HGNC Symbol;Acc:HGNC:13291] GABA type A receptor associated protein like 2 protein_coding https://uswest.ensembl.org/homo_sapiens/Gene/Summary?g=ENSG00000034713 . . . . . . . . . . . . . . . . . . More examples","breadcrumbs":"gget search » Example","id":"71","title":"Example"},"72":{"body":"If you use gget search in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606.","breadcrumbs":"gget search » References","id":"72","title":"References"},"73":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Function to install/download third-party dependencies for a specified gget module. Positional argument module gget module for which dependencies should be installed. Optional arguments -o --out Path to the folder downloaded files will be saved in (currently only applies to module = 'elm'). NOTE: Do NOT use this argument when downloading the files for use with gget.elm. Default: None (downloaded files are saved inside the gget package installation folder). Flags -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget setup » gget setup 🔧","id":"73","title":"gget setup 🔧"},"74":{"body":"gget setup alphafold # Python\ngget.setup(\"alphafold\") → Installs all (modified) third-party dependencies and downloads model parameters (~4GB) required to run gget alphafold .","breadcrumbs":"gget setup » Example","id":"74","title":"Example"},"75":{"body":"Python arguments are equivalent to long-option arguments (--arg), unless otherwise specified. Flags are True/False arguments in Python. The manual for any gget tool can be called from the command-line using the -h --help flag. Fetch nucleotide or amino acid sequence(s) of a gene (and all its isoforms) or a transcript by Ensembl ID. Return format: FASTA. Positional argument ens_ids One or more Ensembl IDs. Optional arguments -o --out Path to the file the results will be saved in, e.g. path/to/directory/results.fa. Default: Standard out. Python: save=True will save the output in the current working directory. Flags -t --translate Returns amino acid (instead of nucleotide) sequences. Nucleotide sequences are fetched from Ensembl . Amino acid sequences are fetched from UniProt . -iso --isoforms Returns the sequences of all known transcripts. (Only for gene IDs.) -q --quiet Command-line only. Prevents progress information from being displayed. Python: Use verbose=False to prevent progress information from being displayed.","breadcrumbs":"gget seq » gget seq 🧬","id":"75","title":"gget seq 🧬"},"76":{"body":"gget seq ENSG00000034713 ENSG00000104853 ENSG00000170296 # Python\ngget.seq([\"ENSG00000034713\", \"ENSG00000104853\", \"ENSG00000170296\"]) → Returns the nucleotide sequences of ENSG00000034713, ENSG00000104853, and ENSG00000170296 in FASTA format. gget seq -t -iso ENSG00000034713 # Python\ngget.seq(\"ENSG00000034713\", translate=True, isoforms=True) → Returns the amino acid sequences of all known transcripts of ENSG00000034713 in FASTA format. More examples","breadcrumbs":"gget seq » Examples","id":"76","title":"Examples"},"77":{"body":"If you use gget seq in a publication, please cite the following articles: Luebbert, L., & Pachter, L. (2023). Efficient querying of genomic reference databases with gget. Bioinformatics. https://doi.org/10.1093/bioinformatics/btac836 Martin FJ, Amode MR, Aneja A, Austine-Orimoloye O, Azov AG, Barnes I, Becker A, Bennett R, Berry A, Bhai J, Bhurji SK, Bignell A, Boddu S, Branco Lins PR, Brooks L, Ramaraju SB, Charkhchi M, Cockburn A, Da Rin Fiorretto L, Davidson C, Dodiya K, Donaldson S, El Houdaigui B, El Naboulsi T, Fatima R, Giron CG, Genez T, Ghattaoraya GS, Martinez JG, Guijarro C, Hardy M, Hollis Z, Hourlier T, Hunt T, Kay M, Kaykala V, Le T, Lemos D, Marques-Coelho D, Marugán JC, Merino GA, Mirabueno LP, Mushtaq A, Hossain SN, Ogeh DN, Sakthivel MP, Parker A, Perry M, Piližota I, Prosovetskaia I, Pérez-Silva JG, Salam AIA, Saraiva-Agostinho N, Schuilenburg H, Sheppard D, Sinha S, Sipos B, Stark W, Steed E, Sukumaran R, Sumathipala D, Suner MM, Surapaneni L, Sutinen K, Szpak M, Tricomi FF, Urbina-Gómez D, Veidenberg A, Walsh TA, Walts B, Wass E, Willhoft N, Allen J, Alvarez-Jarreta J, Chakiachvili M, Flint B, Giorgetti S, Haggerty L, Ilsley GR, Loveland JE, Moore B, Mudge JM, Tate J, Thybert D, Trevanion SJ, Winterbottom A, Frankish A, Hunt SE, Ruffier M, Cunningham F, Dyer S, Finn RD, Howe KL, Harrison PW, Yates AD, Flicek P. Ensembl 2023. Nucleic Acids Res. 2023 Jan 6;51(D1):D933-D941. doi: 10.1093/nar/gkac958 . PMID: 36318249; PMCID: PMC9825606 The UniProt Consortium , UniProt: the Universal Protein Knowledgebase in 2023, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D523–D531, https://doi.org/10.1093/nar/gkac1052","breadcrumbs":"gget seq » References","id":"77","title":"References"},"78":{"body":"Thank you for investing your time in contributing to our project! Any contribution you make will be reflected on the gget repo . ✨ Read our Code of Conduct to keep our community approachable and respectable. In this guide you will get an overview of the contribution workflow from opening an issue or creating a pull request (PR) to reviewing and merging a PR.","breadcrumbs":"Contributing Guide » Welcome to gget's contributing guide","id":"78","title":"Welcome to gget's contributing guide"},"79":{"body":"","breadcrumbs":"Contributing Guide » Issues","id":"79","title":"Issues"},"8":{"body":"","breadcrumbs":"gget alphafold » 🔗 Google Colab tutorial","id":"8","title":"🔗 Google Colab tutorial"},"80":{"body":"If you spot a problem with gget or you have an idea for a new feature, check if an issue already exists . If a related issue doesn't exist, you can open a new issue using the relevant issue form .","breadcrumbs":"Contributing Guide » Create a new issue","id":"80","title":"Create a new issue"},"81":{"body":"Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. If you find an issue to work on, you are welcome to open a PR with a fix.","breadcrumbs":"Contributing Guide » Solve an issue","id":"81","title":"Solve an issue"},"82":{"body":"","breadcrumbs":"Contributing Guide » Contribute through pull requests","id":"82","title":"Contribute through pull requests"},"83":{"body":"Fork the repository. Using GitHub Desktop: Getting started with GitHub Desktop will guide you through setting up Desktop. Once Desktop is set up, you can use it to fork the repo ! Using the command line: Fork the repo so that you can make your changes without affecting the original project until you're ready to merge them. Create a working branch and start with your changes!","breadcrumbs":"Contributing Guide » Getting started","id":"83","title":"Getting started"},"84":{"body":"Commit the changes once you are happy with them.","breadcrumbs":"Contributing Guide » Commit your update","id":"84","title":"Commit your update"},"85":{"body":"Review the content for technical accuracy. Copy-edit the changes/comments for grammar, spelling, and adherence to the general style of existing gget code. Format your code using black . Make sure the unit tests pass: Developer dependencies can be installed with pip install -r dev-requirements.txt Run existing unit tests from the gget repository root with coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* Add new unit tests if applicable: Arguments and expected results are stored in json files in ./tests/fixtures/ Unit tests can be added to ./tests/test_*.py and will be automatically detected Make sure the edits are compatible with both the Python and the command line interface The command line interface and arguments are defined in ./gget/main.py Add new modules/arguments to the documentation if applicable: The manual for each module can be edited/added as ./docs/src/*.md If you have any questions, feel free to start a discussion or create an issue as described above.","breadcrumbs":"Contributing Guide » ‼️ Self-review the following before creating a Pull Request ‼️","id":"85","title":"‼️ Self-review the following before creating a Pull Request ‼️"},"86":{"body":"When you're finished with the changes, create a pull request , also known as a PR. ‼️ Please make all PRs against the dev branch of the gget repository. Don't forget to link PR to issue if you are solving one. Enable the checkbox to allow maintainer edits so the branch can be updated for a merge. If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues. Once you submit your PR, a gget team member will review your proposal. We may ask questions or request additional information.","breadcrumbs":"Contributing Guide » Pull Request","id":"86","title":"Pull Request"},"87":{"body":"Congratulations! 🎉 The gget team thanks you. ✨ Once your PR is merged, your contributions will be publicly visible on the gget repo .","breadcrumbs":"Contributing Guide » Your PR is merged!","id":"87","title":"Your PR is merged!"},"88":{"body":"","breadcrumbs":"Code of Conduct » Contributor Covenant Code of Conduct","id":"88","title":"Contributor Covenant Code of Conduct"},"89":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Code of Conduct » Our Pledge","id":"89","title":"Our Pledge"},"9":{"body":"","breadcrumbs":"gget alphafold » 🔗 Protein structure prediction with comparison to related crystal structures","id":"9","title":"🔗 Protein structure prediction with comparison to related crystal structures"},"90":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others' private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Code of Conduct » Our Standards","id":"90","title":"Our Standards"},"91":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Code of Conduct » Enforcement Responsibilities","id":"91","title":"Enforcement Responsibilities"},"92":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Code of Conduct » Scope","id":"92","title":"Scope"},"93":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at lpachter@caltech.edu. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Code of Conduct » Enforcement","id":"93","title":"Enforcement"},"94":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Code of Conduct » Enforcement Guidelines","id":"94","title":"Enforcement Guidelines"},"95":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Code of Conduct » 1. Correction","id":"95","title":"1. Correction"},"96":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Code of Conduct » 2. Warning","id":"96","title":"2. Warning"},"97":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Code of Conduct » 3. Temporary Ban","id":"97","title":"3. Temporary Ban"},"98":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Code of Conduct » 4. Permanent Ban","id":"98","title":"4. Permanent Ban"},"99":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla's code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations .","breadcrumbs":"Code of Conduct » Attribution","id":"99","title":"Attribution"}},"length":179,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"4":{"9":{"5":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"3":{"6":{"4":{"4":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"2":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"6":{"5":{"7":{"7":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"3":{"4":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"6":{"6":{"3":{"6":{"4":{"3":{"4":{"7":{"2":{"4":{"1":{"8":{"3":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"9":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"5":{"1":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"8":{"1":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"9":{":":{"3":{"5":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":7,"docs":{"121":{"tf":1.0},"131":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"22":{"tf":1.0},"37":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}}},"1":{"0":{",":{"1":{"0":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"1":{"0":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"1":{".":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"6":{"/":{"df":0,"docs":{},"s":{"0":{"0":{"2":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"/":{"2":{"8":{".":{"1":{".":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"c":{"1":{"0":{"4":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"8":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"0":{"4":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"1":{"0":{"1":{"5":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"3":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{".":{"2":{"2":{"9":{"2":{"0":{"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":{}},"2":{"6":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"2":{"0":{"0":{"4":{"0":{"8":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"/":{"0":{"0":{"0":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"6":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":13,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"19":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"148":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}},"4":{"df":4,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"5":{"9":{"2":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"n":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"d":{"df":0,"docs":{},"n":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"1":{"0":{"6":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"149":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"1":{".":{"2":{"1":{"9":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"4":{"5":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"2":{"5":{"0":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0}}},"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"8":{"(":{"1":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"3":{".":{"2":{"6":{"4":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"5":{"9":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":10,"docs":{"104":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},":":{"df":0,"docs":{},"g":{".":{"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"8":{"(":{"1":{")":{":":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"(":{"2":{"3":{")":{":":{"3":{"8":{"6":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.0},"95":{"tf":1.0}},"r":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":4,"docs":{"137":{"tf":2.0},"2":{"tf":1.0},"50":{"tf":2.0},"99":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"8":{"2":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"5":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":3,"docs":{"137":{"tf":1.0},"27":{"tf":2.0},"50":{"tf":1.0}}},"1":{"2":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"6":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"9":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"113":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"2":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":3.7416573867739413},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.7416573867739413},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"3":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":3.605551275463989},"103":{"tf":1.0},"104":{"tf":3.3166247903554},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}}},"4":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"133":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"45":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"1":{"0":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"1":{"0":{"2":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"2":{"3":{"1":{"7":{"1":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"8":{"8":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"0":{"2":{"1":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}},"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"37":{"tf":1.0}}},"7":{".":{"7":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"(":{"0":{"5":{")":{"8":{"0":{"3":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},";":{"4":{"7":{"(":{"df":0,"docs":{},"w":{"1":{")":{":":{"df":0,"docs":{},"w":{"1":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"2":{"6":{"9":{")":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"71":{"tf":1.4142135623730951},"96":{"tf":1.0}},"k":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{"1":{"0":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"2":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"8":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"1":{"8":{"7":{"8":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":4,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}},"1":{"0":{"6":{"9":{"3":{"7":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"1":{"df":0,"docs":{},"i":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"b":{"c":{"0":{"3":{"8":{"1":{"5":{"6":{"\"":{",":{"\"":{"c":{"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"2":{"2":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"8":{"3":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"6":{".":{"2":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"8":{"2":{"4":{"9":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"9":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"6":{"8":{"5":{"2":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"6":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}},"8":{"6":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"d":{"df":8,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"174":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":2.6457513110645907},"97":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"q":{"3":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"4":{".":{"3":{"5":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"4":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":12,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"5":{".":{"9":{"0":{"5":{"5":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"45":{"tf":1.0}}},"1":{"3":{"7":{"9":{"4":{"5":{"9":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"2":{"5":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"2":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"8":{"3":{"df":0,"docs":{},"–":{"5":{"8":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"–":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"1":{"5":{"(":{"3":{")":{":":{"4":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"(":{"d":{"1":{")":{":":{"d":{"3":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"2":{"6":{"6":{"0":{"1":{"5":{"1":{"_":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"6":{"4":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},";":{"5":{"1":{"(":{"d":{"1":{")":{":":{"d":{"1":{"3":{"5":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"3":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}},"7":{"3":{"4":{"8":{"8":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"5":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0}},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"8":{".":{"2":{"7":{"4":{"0":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"0":{".":{"c":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"2":{"1":{"1":{"4":{"1":{"6":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"121":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"g":{".":{"2":{"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"4":{"7":{"(":{"d":{"1":{")":{":":{"d":{"9":{"4":{"1":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"9":{".":{"5":{"7":{"0":{"4":{"5":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"8":{"4":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"3":{"8":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":1,"docs":{"62":{"tf":4.242640687119285}}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"b":{"c":{"a":{"1":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"c":{"a":{"a":{"1":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":6,"docs":{"104":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"s":{"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}},"s":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"173":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"39":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"177":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.7320508075688772}},"e":{"2":{"df":8,"docs":{"106":{"tf":3.0},"115":{"tf":2.0},"124":{"tf":2.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"30":{"tf":2.0},"4":{"tf":3.0},"47":{"tf":1.4142135623730951}}},"3":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}},"df":1,"docs":{"168":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"‑":{"0":{"0":{"1":{"5":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":34,"docs":{"1":{"tf":2.6457513110645907},"100":{"tf":3.605551275463989},"118":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}},"g":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"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":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"v":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":4,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951}}},"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"163":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.0}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"9":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":2.0},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"2":{"tf":2.23606797749979},"37":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"á":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"135":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"130":{"tf":1.0},"148":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"f":{"a":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"104":{"tf":2.449489742783178}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}},"r":{"1":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}}},"2":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":3.872983346207417}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}},"df":1,"docs":{"136":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"t":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"107":{"tf":2.23606797749979},"117":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"178":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":19,"docs":{"100":{"tf":1.7320508075688772},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"6":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"141":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"2":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"2":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":2.8284271247461903},"108":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"129":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.8284271247461903},"4":{"tf":1.4142135623730951},"5":{"tf":2.8284271247461903},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"137":{"tf":2.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":2,"docs":{"142":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":17,"docs":{"1":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}},"á":{"c":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":16,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"í":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":2.23606797749979},"136":{"tf":1.0},"177":{"tf":2.23606797749979},"2":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"65":{"tf":2.0}}}},"z":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"c":{"1":{"6":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"n":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"o":{"b":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"4":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"1":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"146":{"tf":2.0}}}}}}}},"o":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"a":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"/":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"50":{"tf":2.0}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":1,"docs":{"143":{"tf":2.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":6,"docs":{"32":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"r":{";":{"1":{"2":{"(":{"4":{")":{":":{"6":{"5":{"6":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"p":{"1":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"b":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"3":{"9":{"\"":{",":{"\"":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":10,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"149":{"tf":1.0}},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"a":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":26,"docs":{"104":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"s":{"4":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":2.23606797749979},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"4":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"¿":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"12":{"tf":2.23606797749979},"15":{"tf":2.449489742783178},"18":{"tf":2.23606797749979},"2":{"tf":4.242640687119285},"21":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"32":{"tf":2.8284271247461903},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"47":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"52":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"73":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}},"o":{"df":6,"docs":{"104":{"tf":3.605551275463989},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.7320508075688772}}}}}}}}},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":1,"docs":{"16":{"tf":1.0}},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"l":{"1":{"0":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"í":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"ú":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"86":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"y":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"123":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"120":{"tf":1.0},"145":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"167":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"g":{"8":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"p":{"5":{"df":0,"docs":{},"f":{"1":{"\"":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"3":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"2":{"d":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"b":{"d":{"d":{"3":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"b":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":2.449489742783178}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"162":{"tf":1.0},"26":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"9":{"4":{"9":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"1":{"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"135":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}},"y":{"df":0,"docs":{},"u":{"d":{"a":{"df":1,"docs":{"103":{"tf":1.0}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}},"i":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":19,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"126":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":2.23606797749979},"135":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"k":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":3.605551275463989},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"149":{"tf":2.8284271247461903},"178":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"0":{"3":{"8":{"1":{"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":5.0990195135927845},"129":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"140":{"tf":1.0},"50":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"a":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"a":{"df":1,"docs":{"160":{"tf":1.0}},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":4,"docs":{"134":{"tf":2.23606797749979},"140":{"tf":1.0},"40":{"tf":2.23606797749979},"53":{"tf":1.0}}},"df":2,"docs":{"133":{"tf":1.0},"39":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"r":{"_":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"136":{"tf":1.0},"162":{"tf":1.0},"47":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":2.6457513110645907},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.7320508075688772},"6":{"tf":2.0},"65":{"tf":2.6457513110645907}},"n":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772}}},"p":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}},"t":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":1,"docs":{"16":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":2,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"126":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"ú":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"d":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{".":{"(":{"2":{"1":{"8":{"5":{"_":{"2":{"2":{"8":{"3":{")":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"8":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"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":{}},"*":{"2":{"4":{"4":{"6":{"a":{">":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"g":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}},"df":0,"docs":{}}},"9":{"_":{"1":{"3":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":2.449489742783178},"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"102":{"tf":1.0}},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.23606797749979}},"o":{"df":5,"docs":{"104":{"tf":2.23606797749979},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"127":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"df":0,"docs":{}}}},"á":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"58":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"o":{"df":1,"docs":{"146":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}}},"df":1,"docs":{"62":{"tf":1.0}},"u":{"df":1,"docs":{"16":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}}},"c":{"d":{"c":{"1":{"0":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"6":{"\"":{",":{"\"":{"9":{"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"d":{"d":{"3":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"d":{"c":{"2":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0}},"h":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"8":{"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":4.242640687119285},"105":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":4.242640687119285},"28":{"tf":2.23606797749979},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.0},"134":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"123":{"tf":4.358898943540674},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"29":{"tf":4.358898943540674},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"5":{"tf":1.0},"64":{"tf":2.449489742783178}}}},"k":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"g":{"df":7,"docs":{"0":{"tf":1.0},"2":{"tf":3.4641016151377544},"5":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"_":{"2":{"0":{"1":{"6":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"1":{"7":{"4":{"3":{"0":{"8":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"9":{"7":{"8":{"6":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"i":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":2.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"145":{"tf":1.0}},"r":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":4.358898943540674}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":4.47213595499958},"103":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"_":{"0":{"0":{"0":{"0":{"5":{"4":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"95":{"tf":1.0}}}}},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":2.8284271247461903},"40":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":1,"docs":{"103":{"tf":1.0}},"k":{"df":2,"docs":{"1":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"_":{"c":{"1":{"4":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"c":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"2":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"1":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":2.0},"40":{"tf":2.0}}}},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":11,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.7320508075688772},"166":{"tf":1.0},"47":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"104":{"tf":2.0},"123":{"tf":1.0},"143":{"tf":2.8284271247461903}}},"df":5,"docs":{"2":{"tf":2.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"126":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":4,"docs":{"2":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"67":{"tf":1.0}},"n":{"d":{"df":30,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":16,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"o":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.4641016151377544},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}},"r":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":2.0}}}}}}},"df":6,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"x":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"36":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"d":{"df":12,"docs":{"155":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"d":{"a":{"=":{"=":{"4":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"3":{"tf":1.0},"5":{"tf":2.449489742783178}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"t":{"a":{"df":10,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772}}},"df":9,"docs":{"78":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":4.47213595499958},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0}},"f":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":3,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"15":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}}}},"df":4,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"12":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":3.1622776601683795},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":1,"docs":{"103":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":3.1622776601683795},"144":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"150":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"r":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"159":{"tf":1.0}}}},"t":{"df":6,"docs":{"78":{"tf":2.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}},"t":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":2.0},"2":{"tf":1.7320508075688772},"4":{"tf":2.0}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":3,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0}},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"91":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"13":{"tf":1.0}}},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}},"r":{"df":1,"docs":{"108":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"a":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"o":{"df":3,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"126":{"tf":3.605551275463989},"127":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"32":{"tf":3.605551275463989},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"2":{"9":{"0":{"7":{"4":{"9":{"4":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"v":{"5":{"7":{"0":{"1":{"4":{"4":{"2":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"136":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"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":{"/":{"2":{"/":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"q":{"df":2,"docs":{"176":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"99":{"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":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"176":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":1,"docs":{"148":{"tf":1.0}},"r":{"df":6,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"167":{"tf":1.0}}},"t":{"df":9,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"111":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"é":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":27,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":2.0},"21":{"tf":1.7320508075688772},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"70":{"tf":2.0}}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":26,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":4,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"c":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"p":{"2":{"c":{"1":{"8":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"z":{"df":7,"docs":{"100":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":3.1622776601683795},"127":{"tf":1.0},"128":{"tf":1.0}},"e":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0}}}}}},"d":{"1":{"3":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"4":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"9":{"7":{"df":0,"docs":{},"–":{"d":{"5":{"0":{"8":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"df":0,"docs":{},"–":{"d":{"5":{"3":{"1":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"1":{"df":0,"docs":{},"–":{"d":{"8":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"r":{"df":1,"docs":{"167":{"tf":1.0}}},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":48,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.872983346207417},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.8284271247461903},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"b":{"a":{"a":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"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":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"58":{"tf":2.6457513110645907}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":3.605551275463989},"30":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":22,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":3.4641016151377544},"124":{"tf":1.0},"126":{"tf":3.7416573867739413},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.6457513110645907},"149":{"tf":2.8284271247461903},"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"ñ":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"b":{"df":10,"docs":{"106":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"18":{"tf":1.0},"36":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":16,"docs":{"100":{"tf":5.0990195135927845},"116":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.0},"32":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"b":{"df":0,"docs":{},"e":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":2.449489742783178},"143":{"tf":1.0}},"n":{"df":3,"docs":{"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":69,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":3.605551275463989},"103":{"tf":5.656854249492381},"104":{"tf":12.922847983320086},"106":{"tf":5.291502622129181},"107":{"tf":5.291502622129181},"108":{"tf":3.7416573867739413},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":4.58257569495584},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":4.58257569495584},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":8.306623862918075},"124":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":7.615773105863909},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"130":{"tf":5.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":5.656854249492381},"134":{"tf":2.6457513110645907},"135":{"tf":5.830951894845301},"136":{"tf":4.69041575982343},"137":{"tf":4.58257569495584},"139":{"tf":4.358898943540674},"140":{"tf":1.0},"141":{"tf":3.7416573867739413},"143":{"tf":6.4031242374328485},"144":{"tf":1.0},"145":{"tf":6.0},"146":{"tf":5.196152422706632},"147":{"tf":4.242640687119285},"148":{"tf":3.1622776601683795},"149":{"tf":6.324555320336759},"150":{"tf":1.7320508075688772},"151":{"tf":2.6457513110645907},"152":{"tf":1.0},"153":{"tf":4.58257569495584},"154":{"tf":2.23606797749979},"155":{"tf":3.1622776601683795},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.8284271247461903},"168":{"tf":3.3166247903554},"169":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.449489742783178},"172":{"tf":2.449489742783178},"173":{"tf":2.23606797749979},"174":{"tf":2.8284271247461903},"175":{"tf":2.6457513110645907},"176":{"tf":2.6457513110645907},"177":{"tf":4.69041575982343},"178":{"tf":2.23606797749979},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":2.6457513110645907},"2":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"29":{"tf":4.795831523312719},"32":{"tf":3.1622776601683795},"36":{"tf":2.23606797749979},"39":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":2.8284271247461903},"5":{"tf":2.0},"50":{"tf":3.0},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":3.605551275463989},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"b":{"2":{"9":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"\"":{",":{"\"":{"a":{"c":{"a":{"a":{"1":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"1":{"\"":{",":{"\"":{"2":{"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":18,"docs":{"107":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"123":{"tf":4.795831523312719},"126":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.0},"135":{"tf":2.449489742783178},"137":{"tf":3.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"145":{"tf":2.6457513110645907}}},"df":17,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":3.605551275463989},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":3.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":3.3166247903554}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"145":{"tf":1.0}}}}}}},"g":{"_":{"a":{"df":0,"docs":{},"p":{"c":{"c":{"_":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":31,"docs":{"103":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":4.0},"126":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"á":{"df":1,"docs":{"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"2":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"104":{"tf":2.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"134":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0}},"n":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}},"u":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"162":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"d":{"df":23,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"114":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"160":{"tf":2.0},"83":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"é":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}},"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":2,"docs":{"62":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"á":{"df":1,"docs":{"136":{"tf":1.0}}}}},"v":{"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"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":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"í":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"142":{"tf":1.0}}}},"v":{"df":5,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951}}}}}}}},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"1":{":":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"b":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"40":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"167":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"134":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":3,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0},"75":{"tf":1.0}},"o":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"172":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":2.449489742783178}},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"j":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"m":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"n":{"a":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":7,"docs":{"120":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"*":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}}}},"i":{":":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"s":{"4":{"1":{"4":{"6":{"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":3.872983346207417},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.872983346207417},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"134":{"tf":1.7320508075688772},"2":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"t":{"df":4,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"c":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"32":{"tf":3.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"40":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"=":{"2":{"0":{"0":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"1":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.3166247903554},"61":{"tf":3.4641016151377544},"64":{"tf":2.0},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"v":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":2,"docs":{"104":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"df":4,"docs":{"162":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"d":{"/":{"a":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":4.242640687119285},"18":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"_":{"0":{"0":{"0":{"0":{"2":{"7":{"4":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"_":{"2":{"0":{"1":{"5":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":2.449489742783178},"127":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"33":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178}},"e":{"c":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"152":{"tf":1.0}},"s":{"df":1,"docs":{"106":{"tf":2.449489742783178}}}}},"df":2,"docs":{"133":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":26,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}}},"l":{"df":54,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":6.244997998398398},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.605551275463989},"126":{"tf":3.872983346207417},"127":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":3.605551275463989},"139":{"tf":2.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.8284271247461903},"144":{"tf":1.0},"145":{"tf":3.872983346207417},"146":{"tf":2.6457513110645907},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":2,"docs":{"130":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}},"m":{"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"133":{"tf":3.0},"134":{"tf":3.3166247903554},"177":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"39":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":3.1622776601683795},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"73":{"tf":1.0}},"e":{"0":{"0":{"0":{"0":{"9":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"í":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"140":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":2.0},"158":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979}}}}}}}},"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}},"o":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":60,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":4.58257569495584},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.6457513110645907},"113":{"tf":1.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":3.605551275463989},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":3.605551275463989},"139":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.3166247903554},"144":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":3.3166247903554},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":2.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":2.23606797749979},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"136":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":2.0},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":2.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"120":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"5":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":45,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"114":{"tf":2.0},"12":{"tf":2.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"177":{"tf":2.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"c":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"8":{"0":{"2":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"154":{"tf":2.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"3":{"8":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"3":{"1":{"7":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"5":{"3":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"4":{"3":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"5":{"3":{"7":{"df":1,"docs":{"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"9":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":2.0},"146":{"tf":1.4142135623730951},"4":{"tf":2.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"2":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"8":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"9":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"1":{"9":{"4":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":5.291502622129181}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"9":{"6":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"8":{"9":{"5":{"df":2,"docs":{"135":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"5":{"4":{"0":{"5":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"1":{"6":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"0":{"0":{"2":{"2":{"9":{"1":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"4":{"9":{"1":{"5":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"3":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"1":{"1":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"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":{}},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":2,"docs":{"15":{"tf":1.0},"16":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"7":{"2":{"4":{"3":{".":{"7":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"4":{"4":{"1":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"2":{"5":{"1":{"9":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"1":{"9":{"1":{"4":{"df":1,"docs":{"59":{"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":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"2":{"5":{"6":{"6":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"126":{"tf":1.0},"32":{"tf":1.0},"64":{"tf":3.4641016151377544}}},"y":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"p":{"d":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"d":{"a":{"df":6,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.0}},"i":{"df":4,"docs":{"145":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"104":{"tf":1.0},"131":{"tf":1.0}}}},"df":1,"docs":{"148":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}}}},"í":{"df":1,"docs":{"163":{"tf":1.0}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":3.1622776601683795},"143":{"tf":1.0},"167":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"108":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"173":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"103":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":22,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":2,"docs":{"137":{"tf":1.0},"148":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"í":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"e":{"c":{"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"z":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":15,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"á":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"163":{"tf":1.0}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":20,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":3.3166247903554},"148":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"126":{"tf":2.0},"32":{"tf":1.7320508075688772},"61":{"tf":1.0}}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"o":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"107":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":30,"docs":{"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"h":{"5":{"a":{"d":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"d":{"a":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"í":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"166":{"tf":1.0}}}}},"s":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"12":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":2.8284271247461903},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":3,"docs":{"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"f":{"1":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}},"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"136":{"tf":1.0},"32":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":13,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0}},"o":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"q":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":24,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"68":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"c":{"df":1,"docs":{"61":{"tf":1.0}}},"d":{"df":2,"docs":{"26":{"tf":1.0},"61":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0}}}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"15":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"55":{"tf":1.0}}}},"f":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"g":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"26":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":30,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":3.605551275463989},"59":{"tf":3.1622776601683795},"6":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"=":{"'":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":10,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"44":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":3.872983346207417},"62":{"tf":1.4142135623730951},"81":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"2":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"d":{"df":12,"docs":{"104":{"tf":1.0},"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"101":{"tf":1.0}}},"x":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":2.8284271247461903},"81":{"tf":1.0}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"g":{"df":26,"docs":{"12":{"tf":2.23606797749979},"126":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"46":{"tf":2.6457513110645907},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"3":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":2.0},"50":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}}},"y":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":1,"docs":{"61":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}},"m":{"a":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0}},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":2.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":1,"docs":{"162":{"tf":1.0}}},"o":{"df":24,"docs":{"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.0},"154":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"40":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"137":{"tf":1.0},"176":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}},"p":{"df":8,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"2":{"tf":2.0},"4":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.0}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":5,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"164":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"163":{"tf":1.7320508075688772}}}}}}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"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":{}},"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"a":{"(":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"53":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"c":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"1":{"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"f":{"2":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":8,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"1":{"tf":1.0},"12":{"tf":1.0}}},"(":{"df":1,"docs":{"4":{"tf":1.0}}},"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.23606797749979}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":2.449489742783178},"100":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.6457513110645907},"106":{"tf":2.0},"114":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":3.605551275463989},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.8284271247461903},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"29":{"tf":2.449489742783178},"30":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"46":{"tf":3.7416573867739413},"47":{"tf":3.7416573867739413},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":4.898979485566356},"67":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.4142135623730951}},"r":{"a":{"d":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}},"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"137":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"62":{"tf":1.0}}},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"→":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":1,"docs":{"16":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"67":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"$":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"'":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":1,"docs":{"16":{"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":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"146":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":1.0},"142":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}},"s":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"6":{"9":{"1":{"9":{"4":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"k":{"4":{"2":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"3":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"7":{"c":{"df":0,"docs":{},"t":{"5":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{"df":2,"docs":{"146":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"148":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"a":{"df":2,"docs":{"150":{"tf":1.0},"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":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":1.0},"146":{"tf":1.0},"4":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"133":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"“":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":136,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":4.795831523312719},"10":{"tf":1.0},"100":{"tf":4.58257569495584},"101":{"tf":1.0},"102":{"tf":2.449489742783178},"103":{"tf":4.795831523312719},"104":{"tf":8.660254037844387},"105":{"tf":1.7320508075688772},"106":{"tf":4.795831523312719},"107":{"tf":2.6457513110645907},"108":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.8284271247461903},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"137":{"tf":2.449489742783178},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":4.58257569495584},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":9.273618495495704},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"27":{"tf":3.1622776601683795},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"4":{"tf":4.69041575982343},"40":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":2.6457513110645907},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":3.1622776601683795},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":4.242640687119285},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"t":{"df":2,"docs":{"163":{"tf":1.0},"86":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"6":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"155":{"tf":1.7320508075688772},"160":{"tf":2.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":5,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"o":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"l":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"2":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"df":3,"docs":{"147":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"_":{"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":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}},"f":{",":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"p":{"3":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"d":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"á":{"df":0,"docs":{},"n":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":3,"docs":{"4":{"tf":1.0},"78":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"í":{"a":{"df":4,"docs":{"106":{"tf":1.0},"155":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"2":{"0":{"1":{"9":{"df":2,"docs":{"135":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"166":{"tf":1.0}}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"h":{"5":{"a":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"g":{"a":{"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"y":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"b":{"b":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":53,"docs":{"100":{"tf":3.1622776601683795},"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":40,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"g":{"3":{"8":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"b":{"c":{"df":0,"docs":{},"h":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"t":{"b":{"4":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"d":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"h":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"t":{"df":3,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":2.0},"123":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.4142135623730951},"4":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"p":{"_":{"0":{"0":{"0":{"0":{"9":{"6":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"t":{".":{"3":{"5":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"3":{"1":{"7":{"6":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"4":{"1":{"5":{"8":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"t":{"a":{"c":{"8":{"3":{"6":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"a":{"7":{"9":{"3":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"9":{"7":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"0":{"5":{"2":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"2":{"0":{"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"/":{"1":{"4":{"7":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"1":{"0":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"/":{"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"150":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":2.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"49":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"124":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"o":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.449489742783178},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"g":{"c":{"df":2,"docs":{"126":{"tf":2.0},"32":{"tf":2.0}}},"df":0,"docs":{}}},"d":{"(":{"df":2,"docs":{"123":{"tf":3.3166247903554},"29":{"tf":3.4641016151377544}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":3.4641016151377544},"146":{"tf":3.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"2":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":3.1622776601683795},"62":{"tf":2.449489742783178},"64":{"tf":3.4641016151377544},"65":{"tf":3.3166247903554},"75":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"157":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"145":{"tf":2.8284271247461903},"58":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903}}}},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"l":{"1":{"3":{"df":1,"docs":{"62":{"tf":3.0}},"r":{"a":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":2.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":3.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"167":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":14,"docs":{"101":{"tf":1.0},"2":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.0},"139":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"s":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":5,"docs":{"107":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.4142135623730951},"173":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0}}}},"df":2,"docs":{"149":{"tf":1.7320508075688772},"169":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"x":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"143":{"tf":1.0}}}},"df":4,"docs":{"58":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":3.4641016151377544},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"148":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":35,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":2.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}},"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":3.4641016151377544},"59":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}}},"r":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0}}}},"df":1,"docs":{"152":{"tf":1.0}},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}}},"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}},"l":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":5,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":3,"docs":{"104":{"tf":1.0},"145":{"tf":1.7320508075688772},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.8284271247461903},"62":{"tf":3.0},"65":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":2,"docs":{"107":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"166":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"ú":{"a":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"19":{"tf":1.0},"81":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"2":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"‑":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"é":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":2.0}}}}}}},"r":{"a":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"a":{"1":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"8":{"\"":{",":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"142":{"tf":1.0},"153":{"tf":1.0}}},"df":3,"docs":{"153":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"104":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.7320508075688772},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":14,"docs":{"100":{"tf":5.477225575051661},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":5.477225575051661},"20":{"tf":1.0},"28":{"tf":2.8284271247461903},"45":{"tf":1.0},"54":{"tf":2.6457513110645907},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":2.0},"77":{"tf":2.0}},"e":{"df":8,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"28":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"ú":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"g":{"df":8,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"9":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"162":{"tf":1.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"u":{"b":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"k":{"=":{"3":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":14,"docs":{"100":{"tf":3.4641016151377544},"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"177":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"_":{"2":{"0":{"1":{"5":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"136":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"_":{"2":{"0":{"2":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}}},"h":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"y":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"25":{"tf":2.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"101":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ä":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"l":{"a":{"(":{"df":1,"docs":{"153":{"tf":1.0}}},"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":6,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":6,"docs":{"136":{"tf":1.4142135623730951},"158":{"tf":1.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"81":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":54,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":3.1622776601683795},"104":{"tf":7.3484692283495345},"106":{"tf":3.3166247903554},"107":{"tf":3.7416573867739413},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":2.8284271247461903},"118":{"tf":1.7320508075688772},"120":{"tf":2.6457513110645907},"123":{"tf":3.3166247903554},"124":{"tf":1.0},"126":{"tf":4.358898943540674},"128":{"tf":1.4142135623730951},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"133":{"tf":3.605551275463989},"134":{"tf":2.449489742783178},"135":{"tf":3.872983346207417},"136":{"tf":2.8284271247461903},"137":{"tf":3.1622776601683795},"139":{"tf":3.3166247903554},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":6.324555320336759},"145":{"tf":3.872983346207417},"146":{"tf":3.3166247903554},"147":{"tf":4.123105625617661},"148":{"tf":2.0},"149":{"tf":4.47213595499958},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.23606797749979},"178":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"p":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"c":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"df":39,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":4.47213595499958},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"j":{"df":3,"docs":{"137":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"64":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"166":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"z":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0}}},"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"0":{"0":{"6":{"6":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"1":{"4":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":30,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":13,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":4.58257569495584},"130":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":4.795831523312719},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":17,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"c":{"1":{"0":{"0":{"0":{"4":{"7":{"2":{"1":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"2":{"\"":{",":{"\"":{"2":{"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"a":{"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"9":{"8":{"1":{"5":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"5":{"4":{"3":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"3":{"1":{"1":{"7":{"2":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"4":{"5":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.0},"177":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.0}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0990195135927845},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":3.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":2.8284271247461903},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":3.1622776601683795},"141":{"tf":1.7320508075688772},"143":{"tf":3.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":3.3166247903554},"148":{"tf":2.0},"149":{"tf":3.1622776601683795},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.7320508075688772}},"g":{"1":{"0":{"(":{"0":{".":{"0":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"170":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"u":{"c":{"df":0,"docs":{},"í":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"\"":{",":{"\"":{"2":{"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"'":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"a":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"107":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}},"n":{"df":1,"docs":{"59":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":22,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":2,"docs":{"155":{"tf":1.0},"162":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"p":{"3":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"c":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"h":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":3,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"k":{"df":3,"docs":{"46":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"2":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"z":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":4,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}}},"y":{";":{"2":{"(":{"5":{")":{":":{"4":{"0":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"’":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}},"d":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"100":{"tf":5.656854249492381},"137":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":5.656854249492381},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.4641016151377544},"58":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":2.0},"69":{"tf":2.6457513110645907},"72":{"tf":2.6457513110645907},"77":{"tf":2.6457513110645907},"85":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"62":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"92":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"167":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}},"g":{"df":6,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":6,"docs":{"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"a":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"e":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"s":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"l":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"l":{"2":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"m":{"3":{"9":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.4142135623730951},"177":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"74":{"tf":1.0}},"o":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"126":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":2,"docs":{"126":{"tf":1.0},"170":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"140":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":2.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":31,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":9,"docs":{"100":{"tf":2.0},"107":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"2":{"0":{"2":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.23606797749979},"142":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.0},"142":{"tf":1.4142135623730951},"4":{"tf":2.0},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"134":{"tf":1.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":3.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"5":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951}},"s":{"_":{"d":{"b":{"a":{"2":{"df":0,"docs":{},"j":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"1":{"0":{"5":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}},"e":{"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"q":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.0},"143":{"tf":2.449489742783178}}}},"ó":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":3.1622776601683795},"144":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"143":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"58":{"tf":3.1622776601683795}}}},"r":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"t":{"df":18,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.7320508075688772},"177":{"tf":1.0},"2":{"tf":3.1622776601683795},"27":{"tf":3.1622776601683795},"32":{"tf":4.242640687119285},"33":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":6.6332495807108},"59":{"tf":4.123105625617661},"60":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"y":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"v":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"49":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"à":{"df":3,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0}}},"á":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"ú":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}}}}},"n":{".":{"d":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":19,"docs":{"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"\"":{",":{"\"":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"5":{"6":{"\"":{",":{"\"":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"50":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"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":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":2.0},"2":{"tf":1.4142135623730951},"52":{"tf":2.0}}}},"df":1,"docs":{"26":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{"4":{"9":{"9":{"1":{"9":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":2.0},"35":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"4":{"tf":2.449489742783178}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":4.58257569495584},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"f":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"r":{"df":0,"docs":{},"x":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":10,"docs":{"104":{"tf":2.8284271247461903},"114":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":7,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":21,"docs":{"123":{"tf":4.47213595499958},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"29":{"tf":4.47213595499958},"32":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"‑":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"3":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":15,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"h":{"df":1,"docs":{"2":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":2.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"2":{"tf":4.242640687119285}}}},"r":{"d":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"49":{"tf":1.0}}},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"100":{"tf":3.605551275463989},"129":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"35":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"1":{"tf":2.23606797749979},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":9,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"x":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":5,"docs":{"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0}}}}}},"v":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":4.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":2.0}},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"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":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":6,"docs":{"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"123":{"tf":1.0}},"g":{"a":{"df":9,"docs":{"106":{"tf":2.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{";":{"2":{"(":{"1":{"0":{")":{":":{"9":{"6":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":78,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"114":{"tf":3.0},"117":{"tf":3.1622776601683795},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":3.1622776601683795},"123":{"tf":5.196152422706632},"124":{"tf":1.4142135623730951},"126":{"tf":2.8284271247461903},"130":{"tf":3.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"141":{"tf":2.6457513110645907},"142":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":2.0},"149":{"tf":3.3166247903554},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":9,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":16,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.0},"123":{"tf":2.6457513110645907},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"í":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"137":{"tf":2.8284271247461903},"50":{"tf":2.6457513110645907}}}},"df":12,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"=":{"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"63":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":23,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":2.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":3.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":3,"docs":{"160":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":4,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"1":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"í":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"r":{"a":{"df":20,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":7,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":43,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"2":{"4":{"3":{"9":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"3":{"5":{"2":{"2":{"5":{"df":1,"docs":{"62":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"5":{"2":{"0":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"5":{"5":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"103":{"tf":1.0},"137":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":{}}}},"r":{"a":{"df":46,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":6.324555320336759},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":4.0},"120":{"tf":3.3166247903554},"121":{"tf":1.0},"123":{"tf":3.0},"126":{"tf":4.358898943540674},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"133":{"tf":3.0},"135":{"tf":4.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":3.7416573867739413},"141":{"tf":2.8284271247461903},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":1.4142135623730951},"149":{"tf":3.7416573867739413},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.6457513110645907},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0},"32":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"r":{"df":4,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":22,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":2.449489742783178},"114":{"tf":2.449489742783178},"117":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"123":{"tf":2.449489742783178},"126":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":2.6457513110645907},"136":{"tf":1.4142135623730951},"137":{"tf":2.6457513110645907},"139":{"tf":2.449489742783178},"141":{"tf":2.449489742783178},"143":{"tf":2.6457513110645907},"145":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"149":{"tf":2.6457513110645907},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"162":{"tf":1.4142135623730951}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":1,"docs":{"149":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":9,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"36":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}}},"y":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"u":{"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":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}},"d":{"b":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"a":{"df":6,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"18":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":3.3166247903554},"139":{"tf":2.0},"145":{"tf":3.3166247903554},"146":{"tf":4.795831523312719},"177":{"tf":1.0},"2":{"tf":2.23606797749979},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":3.3166247903554},"64":{"tf":3.3166247903554},"65":{"tf":4.795831523312719},"66":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"d":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":32,"docs":{"100":{"tf":3.1622776601683795},"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"153":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"28":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"t":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"l":{"df":1,"docs":{"167":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"f":{"1":{"4":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"2":{"1":{"a":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"p":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"ž":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}},"p":{"df":8,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"b":{"d":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":4.47213595499958},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"5":{"tf":1.0}}}}}},"df":11,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"m":{"c":{"1":{"0":{"2":{"4":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"0":{"0":{"8":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"7":{"8":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"5":{"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"5":{"6":{"0":{"3":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"6":{"0":{"3":{"0":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"2":{"3":{"9":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"2":{"4":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"2":{"5":{"5":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}},"i":{"d":{"df":14,"docs":{"100":{"tf":3.4641016151377544},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.4641016151377544},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"100":{"tf":3.605551275463989},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.605551275463989},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"c":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"í":{"a":{"df":2,"docs":{"139":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"145":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":0,"docs":{},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"145":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"í":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":39,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":4.898979485566356},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"178":{"tf":1.4142135623730951}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"167":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"m":{"1":{"b":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"136":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0}}}}}},"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951}},"h":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"123":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}},"o":{"df":4,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"d":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.4142135623730951}}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"107":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":7,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":16,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"s":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"26":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":33,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":4.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"⇄":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":12,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":11,"docs":{"101":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"é":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"126":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"b":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"169":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"m":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":26,"docs":{"104":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":7,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"3":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":89,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":3.0},"136":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":3.1622776601683795},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.0},"18":{"tf":2.6457513110645907},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"27":{"tf":2.23606797749979},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.6457513110645907},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"5":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":3.1622776601683795},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"ú":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{"6":{"2":{"7":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"3":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"4":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"8":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":41,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":3.7416573867739413},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0}},"j":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"t":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"120":{"tf":1.0}}}}},"z":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"b":{"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":{"167":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"u":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"m":{"1":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}},"s":{"b":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":33,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":4.242640687119285},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"29":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"135":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"i":{"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"u":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"23":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":3.0},"177":{"tf":1.0},"2":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.8284271247461903},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"4":{"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":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"148":{"tf":1.7320508075688772}},"r":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"2":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.0},"58":{"tf":1.0}},"g":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":12,"docs":{"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":3.7416573867739413},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"df":4,"docs":{"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"2":{"tf":1.0}}}},"df":3,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"34":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.8284271247461903}},"e":{"=":{"1":{"0":{"3":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.7320508075688772},"91":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"107":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"162":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":4,"docs":{"155":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"15":{"tf":1.0},"2":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":2.23606797749979},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.23606797749979},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":3.4641016151377544},"64":{"tf":1.7320508075688772}},"e":{"=":{"'":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"59":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":2.0},"93":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":24,"docs":{"104":{"tf":3.0},"107":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":3.1622776601683795},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":3.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":28,"docs":{"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"75":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":42,"docs":{"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":2.0},"61":{"tf":2.23606797749979},"62":{"tf":3.3166247903554},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":3.3166247903554},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.0}},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}},"h":{"a":{"b":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{},"f":{"4":{"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"o":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"l":{"d":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":3.872983346207417}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"w":{"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"2":{"9":{"5":{"6":{"8":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"103":{"tf":1.0}}}},"n":{"df":10,"docs":{"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":2.0},"52":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"a":{"/":{"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":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"2":{"8":{"8":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"c":{"3":{"d":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"6":{"2":{"3":{"4":{"5":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"h":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"32":{"tf":3.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}},"n":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":29,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":25,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"b":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"100":{"tf":5.744562646538029},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.1622776601683795},"63":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"104":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"104":{"tf":3.0},"106":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"2":{"2":{"c":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"a":{"(":{"df":3,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0}}},"df":22,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"106":{"tf":3.0},"107":{"tf":2.0},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.47213595499958},"144":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":40,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"104":{"tf":5.385164807134504},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"126":{"tf":3.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":3.4641016151377544},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":11,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"99":{"tf":1.0}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":2.6457513110645907},"177":{"tf":1.0},"36":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.8284271247461903},"70":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"q":{"0":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772}}},"1":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{"]":{"_":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":2.0},"58":{"tf":2.0}}},"df":0,"docs":{}}},"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.449489742783178},"4":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":30,"docs":{"1":{"tf":2.8284271247461903},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"18":{"tf":2.6457513110645907},"19":{"tf":2.0},"2":{"tf":3.605551275463989},"21":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":2.8284271247461903},"40":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":7.0},"59":{"tf":3.605551275463989},"6":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"58":{"tf":1.0},"75":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":19,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"i":{"df":2,"docs":{"174":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"df":4,"docs":{"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{"df":11,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":3.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"89":{"tf":1.0}},"o":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ñ":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"f":{"df":6,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"x":{"df":0,"docs":{},"n":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":34,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":1,"docs":{"62":{"tf":1.0}}},"u":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"108":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"n":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"h":{"a":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907}}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"i":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"a":{"1":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"a":{"6":{"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"s":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"2":{"b":{"\"":{",":{"\"":{"4":{"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"8":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"129":{"tf":1.0},"177":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{":":{"0":{"0":{"0":{"2":{"0":{"7":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"133":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":4,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"k":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":21,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"d":{"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":17,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"=":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"df":9,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"59":{"tf":1.0},"62":{"tf":2.8284271247461903},"68":{"tf":1.0},"70":{"tf":1.7320508075688772}},"i":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.8284271247461903},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":2.0}},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":7,"docs":{"160":{"tf":1.0},"4":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"t":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":7,"docs":{"100":{"tf":1.0},"120":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"137":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"'":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"130":{"tf":2.449489742783178},"133":{"tf":2.0},"137":{"tf":2.23606797749979},"29":{"tf":4.58257569495584},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":3.0},"32":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"b":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}},"df":24,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"2":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{";":{"a":{"c":{"c":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{":":{"1":{"3":{"2":{"9":{"1":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"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":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":2.0}}}}}}},"z":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"‐":{"df":0,"docs":{},"s":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"é":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"í":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"n":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}},"t":{"2":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}},"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":1.0}}},"df":1,"docs":{"12":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"é":{"df":0,"docs":{},"n":{"df":14,"docs":{"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"df":0,"docs":{}},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"d":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":4.123105625617661},"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.4142135623730951},"177":{"tf":4.123105625617661},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"164":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"123":{"tf":2.0},"126":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":6,"docs":{"123":{"tf":2.23606797749979},"29":{"tf":2.23606797749979},"32":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":2.23606797749979},"120":{"tf":2.23606797749979},"123":{"tf":2.0},"126":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"40":{"tf":1.0},"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":3.4641016151377544},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":5,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":3.3166247903554},"139":{"tf":1.0},"149":{"tf":1.0}}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"i":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}}}}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"n":{"df":2,"docs":{"157":{"tf":1.0},"162":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":19,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.6457513110645907},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.0},"32":{"tf":1.4142135623730951},"4":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"2":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"c":{"1":{"\"":{",":{"\"":{"c":{"d":{"df":0,"docs":{},"h":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"2":{"1":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"66":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"d":{"a":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"114":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"170":{"tf":1.0}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"á":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":2.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"118":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"b":{"a":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"177":{"tf":1.0}},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"139":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"4":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"%":{"2":{"0":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"é":{"df":6,"docs":{"136":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":39,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"g":{"a":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"32":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"163":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"o":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"55":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"é":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":4,"docs":{"126":{"tf":1.0},"149":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"0":{"0":{"0":{"0":{"1":{"7":{"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"0":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"1":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"o":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"166":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"39":{"tf":1.0},"52":{"tf":1.0}},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":48,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.8284271247461903},"104":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":37,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":2.8284271247461903},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.0},"104":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"139":{"tf":2.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":2.6457513110645907},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":10,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}},"q":{"df":1,"docs":{"136":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":3.872983346207417}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"107":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":2,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"104":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":2.0},"153":{"tf":1.4142135623730951}},"n":{"d":{"df":0,"docs":{},"o":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"r":{"df":8,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":79,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":4.58257569495584},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.4142135623730951},"39":{"tf":3.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":3.1622776601683795},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":3.3166247903554},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"o":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":4.242640687119285},"178":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"df":1,"docs":{"115":{"tf":1.0}}},"r":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"2":{".":{"3":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"6":{"0":{"0":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"i":{"d":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.449489742783178},"61":{"tf":3.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979}}}},"u":{"df":10,"docs":{"117":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":2.23606797749979},"61":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"141":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":2,"docs":{"142":{"tf":1.0},"144":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":18,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0}},"i":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":6.082762530298219},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"70":{"tf":1.0},"99":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":6.0},"106":{"tf":1.0},"107":{"tf":2.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":9,"docs":{"106":{"tf":2.449489742783178},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"i":{"a":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"108":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{".":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"í":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"1":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.449489742783178},"116":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.449489742783178},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"y":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"1":{"1":{"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"h":{"1":{"\"":{",":{"\"":{"1":{"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.449489742783178},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{":":{"df":0,"docs":{},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"136":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":2,"docs":{"104":{"tf":1.0},"157":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":4.58257569495584},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"177":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"l":{"a":{"b":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"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":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"t":{"b":{"4":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"\"":{",":{"\"":{"4":{"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"f":{"3":{"0":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"4":{"9":{"5":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"3":{"6":{"4":{"4":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"2":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"4":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"6":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"2":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"7":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"8":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"6":{"5":{"7":{"7":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"3":{"4":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"6":{"6":{"3":{"6":{"4":{"3":{"4":{"7":{"2":{"4":{"1":{"8":{"3":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"9":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"5":{"1":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"8":{"1":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"9":{":":{"3":{"5":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":7,"docs":{"121":{"tf":1.0},"131":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"22":{"tf":1.0},"37":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}}},"1":{"0":{",":{"1":{"0":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"1":{"0":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"1":{".":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"6":{"/":{"df":0,"docs":{},"s":{"0":{"0":{"2":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"/":{"2":{"8":{".":{"1":{".":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"c":{"1":{"0":{"4":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"8":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"0":{"4":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"1":{"0":{"1":{"5":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"3":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{".":{"2":{"2":{"9":{"2":{"0":{"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":{}},"2":{"6":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"2":{"0":{"0":{"4":{"0":{"8":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"/":{"0":{"0":{"0":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"6":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":13,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"19":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"148":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}},"4":{"df":4,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"5":{"9":{"2":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"n":{"a":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"d":{"df":0,"docs":{},"n":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"1":{"0":{"6":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"149":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"1":{".":{"2":{"1":{"9":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"4":{"5":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"2":{"5":{"0":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0}}},"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"8":{"(":{"1":{"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"9":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"121":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}},"3":{".":{"2":{"6":{"4":{"7":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"5":{"9":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":10,"docs":{"104":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"37":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},":":{"df":0,"docs":{},"g":{".":{"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"8":{"(":{"1":{")":{":":{"2":{"3":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"(":{"2":{"3":{")":{":":{"3":{"8":{"6":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.0},"95":{"tf":1.4142135623730951}},"r":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":4,"docs":{"137":{"tf":2.0},"2":{"tf":1.0},"50":{"tf":2.0},"99":{"tf":1.0}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"8":{"2":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"5":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"2":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":3,"docs":{"137":{"tf":1.0},"27":{"tf":2.0},"50":{"tf":1.0}}},"1":{"2":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}},"5":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"6":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"8":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"9":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"129":{"tf":1.0},"177":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"113":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"47":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"2":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":3.7416573867739413},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.7416573867739413},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"3":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":3.605551275463989},"103":{"tf":1.0},"104":{"tf":3.3166247903554},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.23606797749979},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}}},"4":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"133":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"45":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"1":{"0":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"1":{"0":{"2":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"2":{"3":{"1":{"7":{"1":{"2":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"8":{"8":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"0":{"2":{"1":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}},"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"37":{"tf":1.0}}},"7":{".":{"7":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"(":{"0":{"5":{")":{"8":{"0":{"3":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},";":{"4":{"7":{"(":{"df":0,"docs":{},"w":{"1":{")":{":":{"df":0,"docs":{},"w":{"1":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"(":{"2":{"6":{"9":{")":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":2.0},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"71":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"k":{"4":{"2":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{".":{"1":{"0":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"2":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"8":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"1":{"8":{"7":{"8":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":4,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}},"1":{"0":{"6":{"9":{"3":{"7":{"6":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"1":{"df":0,"docs":{},"i":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"b":{"c":{"0":{"3":{"8":{"1":{"5":{"6":{"\"":{",":{"\"":{"c":{"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"3":{"2":{"2":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"8":{"3":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"5":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"6":{".":{"2":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"8":{"2":{"4":{"9":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"9":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"6":{"8":{"5":{"2":{"8":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"4":{"6":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772}}},"8":{"6":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"d":{"df":8,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"174":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951}},"r":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"q":{"3":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"4":{".":{"3":{"5":{"df":0,"docs":{},"e":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"4":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":12,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"98":{"tf":1.4142135623730951}},"g":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"5":{".":{"9":{"0":{"5":{"5":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"45":{"tf":1.0}}},"1":{"3":{"7":{"9":{"4":{"5":{"9":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"2":{"5":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"2":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"8":{"3":{"df":0,"docs":{},"–":{"5":{"8":{"9":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"–":{"6":{"0":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"2":{"1":{"5":{"(":{"3":{")":{":":{"4":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"(":{"d":{"1":{")":{":":{"d":{"3":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"2":{"6":{"6":{"0":{"1":{"5":{"1":{"_":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"6":{"4":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},";":{"5":{"1":{"(":{"d":{"1":{")":{":":{"d":{"1":{"3":{"5":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"3":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"54":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}},"7":{"3":{"4":{"8":{"8":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"5":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0}},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"8":{".":{"2":{"7":{"4":{"0":{"6":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"0":{".":{"c":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"2":{"1":{"1":{"4":{"1":{"6":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"121":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}},":":{"df":0,"docs":{},"g":{".":{"2":{"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},";":{"4":{"7":{"(":{"d":{"1":{")":{":":{"d":{"9":{"4":{"1":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"9":{".":{"5":{"7":{"0":{"4":{"5":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"8":{"4":{"0":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"3":{"8":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":1,"docs":{"62":{"tf":4.242640687119285}}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"b":{"c":{"a":{"1":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"c":{"a":{"a":{"1":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":6,"docs":{"104":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"4":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"s":{"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}},"s":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"173":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"39":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"177":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.7320508075688772}},"e":{"2":{"df":8,"docs":{"106":{"tf":3.0},"115":{"tf":2.0},"124":{"tf":2.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"30":{"tf":2.0},"4":{"tf":3.0},"47":{"tf":1.4142135623730951}}},"3":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}},"df":1,"docs":{"168":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"‑":{"0":{"0":{"1":{"5":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":34,"docs":{"1":{"tf":2.6457513110645907},"100":{"tf":3.605551275463989},"118":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}},"g":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"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":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"v":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":4,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951}}},"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"163":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.0}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"9":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}},"t":{"a":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"d":{"df":6,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":2.0},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"2":{"tf":2.23606797749979},"37":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"á":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"135":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"130":{"tf":1.0},"148":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"f":{"a":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"104":{"tf":2.449489742783178}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"t":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}},"r":{"1":{"df":4,"docs":{"106":{"tf":1.7320508075688772},"136":{"tf":2.0},"4":{"tf":1.7320508075688772},"47":{"tf":2.0}}},"2":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":3.872983346207417}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}},"df":1,"docs":{"136":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}},"t":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"107":{"tf":2.23606797749979},"117":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.7320508075688772},"152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"178":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":19,"docs":{"100":{"tf":1.7320508075688772},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"36":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"6":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"141":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"2":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"2":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":25,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":3.1622776601683795},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"129":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"2":{"tf":2.8284271247461903},"4":{"tf":1.4142135623730951},"5":{"tf":3.1622776601683795},"6":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"47":{"tf":1.4142135623730951},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"137":{"tf":2.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":2,"docs":{"142":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}}}},"df":17,"docs":{"1":{"tf":2.6457513110645907},"18":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}},"á":{"c":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":16,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"í":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":2.23606797749979},"136":{"tf":1.0},"177":{"tf":2.23606797749979},"2":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"65":{"tf":2.0}}}},"z":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"c":{"1":{"6":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"n":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"o":{"b":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"4":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}}}}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"1":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"146":{"tf":2.0}}}}}}}},"o":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"a":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"/":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"50":{"tf":2.0}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":1,"docs":{"143":{"tf":2.0}}}},"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":6,"docs":{"32":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"r":{";":{"1":{"2":{"(":{"4":{")":{":":{"6":{"5":{"6":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"p":{"1":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"b":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"3":{"9":{"\"":{",":{"\"":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"r":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":10,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"149":{"tf":1.0}},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"a":{"b":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":26,"docs":{"104":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"s":{"4":{"df":13,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"4":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"¿":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"12":{"tf":2.23606797749979},"15":{"tf":2.449489742783178},"18":{"tf":2.23606797749979},"2":{"tf":4.242640687119285},"21":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"32":{"tf":2.8284271247461903},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"47":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"52":{"tf":2.23606797749979},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"73":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}},"o":{"df":6,"docs":{"104":{"tf":3.605551275463989},"126":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.7320508075688772}}}}}}}}},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":1,"docs":{"16":{"tf":1.0}},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"l":{"1":{"0":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"103":{"tf":1.0},"147":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"í":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"ú":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":1,"docs":{"86":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"y":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"123":{"tf":2.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"120":{"tf":1.0},"145":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"167":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"g":{"8":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"p":{"5":{"df":0,"docs":{},"f":{"1":{"\"":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"3":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"2":{"d":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"b":{"d":{"d":{"3":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"b":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":2.449489742783178}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"172":{"tf":1.0},"173":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"9":{"4":{"9":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"1":{"7":{"0":{"0":{"1":{"2":{"3":{"df":0,"docs":{},"l":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"0":{"3":{"6":{"d":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":3,"docs":{"135":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}},"y":{"df":0,"docs":{},"u":{"d":{"a":{"df":1,"docs":{"103":{"tf":1.0}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":7,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}},"i":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":19,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"126":{"tf":2.0},"130":{"tf":2.0},"133":{"tf":2.23606797749979},"135":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772}},"k":{"df":7,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":3.605551275463989},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"149":{"tf":2.8284271247461903},"178":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"70":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"c":{"0":{"3":{"8":{"1":{"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":5.0990195135927845},"129":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":21,"docs":{"0":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"140":{"tf":1.0},"50":{"tf":1.7320508075688772},"53":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"a":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"a":{"df":1,"docs":{"160":{"tf":1.0}},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":4,"docs":{"134":{"tf":2.23606797749979},"140":{"tf":1.0},"40":{"tf":2.23606797749979},"53":{"tf":1.0}}},"df":2,"docs":{"133":{"tf":1.0},"39":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"é":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"r":{"_":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"136":{"tf":1.0},"162":{"tf":1.0},"47":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.8284271247461903},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"18":{"tf":2.449489742783178},"19":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.7320508075688772},"6":{"tf":2.0},"65":{"tf":2.6457513110645907}},"n":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772}}},"p":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}},"t":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":1,"docs":{"16":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":2,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951}},"r":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"126":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"ú":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"d":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{".":{"(":{"2":{"1":{"8":{"5":{"_":{"2":{"2":{"8":{"3":{")":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"1":{"8":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"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":{}},"*":{"2":{"4":{"4":{"6":{"a":{">":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"g":{">":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}}},"df":0,"docs":{}}},"9":{"_":{"1":{"3":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"0":{"0":{"0":{"2":{"df":0,"docs":{},"i":{"1":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":2.449489742783178},"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"102":{"tf":1.0}},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":1,"docs":{"104":{"tf":2.23606797749979}},"o":{"df":5,"docs":{"104":{"tf":2.23606797749979},"136":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"127":{"tf":1.0},"33":{"tf":1.0},"4":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"df":0,"docs":{}}}},"á":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"58":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"o":{"df":1,"docs":{"146":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}}},"df":1,"docs":{"62":{"tf":1.0}},"u":{"df":1,"docs":{"16":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}}},"c":{"d":{"c":{"1":{"0":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"6":{"\"":{",":{"\"":{"9":{"2":{"3":{"0":{"1":{"1":{"4":{"df":0,"docs":{},"k":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"d":{"d":{"3":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"k":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"d":{"c":{"2":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0}},"h":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"8":{"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":4.242640687119285},"105":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":4.242640687119285},"28":{"tf":2.23606797749979},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.0},"134":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"4":{"tf":1.7320508075688772},"40":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"29":{"tf":4.58257569495584},"30":{"tf":2.0},"31":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"5":{"tf":1.0},"64":{"tf":2.449489742783178}}}},"k":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"g":{"df":7,"docs":{"0":{"tf":1.0},"2":{"tf":3.4641016151377544},"5":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"_":{"2":{"0":{"1":{"6":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"1":{"7":{"4":{"3":{"0":{"8":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"9":{"7":{"8":{"6":{"4":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"i":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":2.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":1,"docs":{"145":{"tf":1.0}},"r":{"df":10,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"177":{"tf":4.58257569495584},"178":{"tf":1.0}}},"t":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":4.47213595499958},"103":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"_":{"0":{"0":{"0":{"0":{"5":{"4":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"95":{"tf":1.0}}}}},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":2.8284271247461903},"40":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":1,"docs":{"103":{"tf":1.0}},"k":{"df":2,"docs":{"1":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"_":{"c":{"1":{"4":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"d":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"c":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"2":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"1":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":2.0},"40":{"tf":2.0}}}},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"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}}}},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":11,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.7320508075688772},"166":{"tf":1.0},"47":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"104":{"tf":2.0},"123":{"tf":1.0},"143":{"tf":2.8284271247461903}}},"df":5,"docs":{"2":{"tf":2.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"126":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":4,"docs":{"2":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"126":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"67":{"tf":1.0}},"n":{"d":{"df":30,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"84":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":16,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"o":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.4641016151377544},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"136":{"tf":1.0},"146":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}},"r":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"146":{"tf":2.0}}}}}}},"df":6,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"x":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"36":{"tf":1.0}}}}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"a":{"d":{"df":12,"docs":{"155":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"d":{"a":{"=":{"=":{"4":{".":{"1":{"3":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"3":{"tf":1.0},"5":{"tf":2.449489742783178}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"t":{"a":{"df":10,"docs":{"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772}}},"df":13,"docs":{"78":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":12,"docs":{"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}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":4.47213595499958},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":3.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0}},"f":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":2,"docs":{"161":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":3,"docs":{"145":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"15":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}}}},"df":4,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"163":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"12":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":3.1622776601683795},"67":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":1,"docs":{"103":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":3.1622776601683795},"144":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"150":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"r":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":10,"docs":{"155":{"tf":2.23606797749979},"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}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"159":{"tf":1.4142135623730951}}}},"t":{"df":13,"docs":{"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}},"t":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":2.0},"2":{"tf":1.7320508075688772},"4":{"tf":2.0}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":3,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0}},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"91":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"13":{"tf":1.0}}},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}},"r":{"df":1,"docs":{"108":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"a":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"o":{"df":3,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"126":{"tf":3.872983346207417},"127":{"tf":1.4142135623730951},"128":{"tf":2.449489742783178},"129":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"32":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"2":{"9":{"0":{"7":{"4":{"9":{"4":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":1,"docs":{"5":{"tf":1.0}},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"v":{"5":{"7":{"0":{"1":{"4":{"4":{"2":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"136":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"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":{"/":{"2":{"/":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"q":{"df":2,"docs":{"176":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"99":{"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":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"176":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":1,"docs":{"148":{"tf":1.0}},"r":{"df":6,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"t":{"df":9,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"59":{"tf":1.0}}}},"v":{"df":1,"docs":{"50":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"é":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":27,"docs":{"104":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":2.0},"21":{"tf":1.7320508075688772},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"70":{"tf":2.0}}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":26,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":10,"docs":{"102":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":4,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"c":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"p":{"2":{"c":{"1":{"8":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"z":{"df":7,"docs":{"100":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"á":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":3.1622776601683795},"127":{"tf":1.0},"128":{"tf":1.0}},"e":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":12,"docs":{"102":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}}}}},"d":{"1":{"3":{"5":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}},"4":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"9":{"7":{"df":0,"docs":{},"–":{"d":{"5":{"0":{"8":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"df":0,"docs":{},"–":{"d":{"5":{"3":{"1":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"1":{"df":0,"docs":{},"–":{"d":{"8":{"4":{"7":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"7":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"r":{"df":1,"docs":{"167":{"tf":1.0}}},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":48,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":3.872983346207417},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"46":{"tf":2.8284271247461903},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.8284271247461903},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"b":{"a":{"a":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"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":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"116":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"123":{"tf":1.0},"143":{"tf":1.0},"58":{"tf":2.6457513110645907}},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":3.605551275463989},"30":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":22,"docs":{"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":3.4641016151377544},"124":{"tf":1.0},"126":{"tf":3.7416573867739413},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.6457513110645907},"149":{"tf":2.8284271247461903},"177":{"tf":1.0},"178":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"ñ":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"b":{"df":10,"docs":{"106":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"18":{"tf":1.0},"36":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":16,"docs":{"100":{"tf":5.0990195135927845},"116":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":5.0990195135927845},"28":{"tf":2.0},"32":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"b":{"df":0,"docs":{},"e":{"df":3,"docs":{"104":{"tf":1.0},"106":{"tf":2.449489742783178},"143":{"tf":1.0}},"n":{"df":3,"docs":{"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":3.605551275463989},"103":{"tf":5.656854249492381},"104":{"tf":12.922847983320086},"106":{"tf":5.477225575051661},"107":{"tf":5.291502622129181},"108":{"tf":3.7416573867739413},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":4.58257569495584},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":4.58257569495584},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":8.306623862918075},"124":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":7.615773105863909},"128":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":5.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":5.656854249492381},"134":{"tf":2.6457513110645907},"135":{"tf":5.830951894845301},"136":{"tf":4.69041575982343},"137":{"tf":4.58257569495584},"139":{"tf":4.358898943540674},"140":{"tf":1.0},"141":{"tf":3.7416573867739413},"143":{"tf":6.4031242374328485},"144":{"tf":1.0},"145":{"tf":6.0},"146":{"tf":5.196152422706632},"147":{"tf":4.242640687119285},"148":{"tf":3.1622776601683795},"149":{"tf":6.324555320336759},"150":{"tf":1.7320508075688772},"151":{"tf":2.6457513110645907},"152":{"tf":1.0},"153":{"tf":4.58257569495584},"154":{"tf":2.23606797749979},"155":{"tf":3.605551275463989},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":2.449489742783178},"161":{"tf":1.0},"162":{"tf":3.1622776601683795},"163":{"tf":2.23606797749979},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":3.0},"168":{"tf":3.605551275463989},"169":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"170":{"tf":2.8284271247461903},"171":{"tf":2.8284271247461903},"172":{"tf":2.6457513110645907},"173":{"tf":2.449489742783178},"174":{"tf":3.0},"175":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"177":{"tf":4.69041575982343},"178":{"tf":2.449489742783178},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"91":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"'":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":25,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":2.6457513110645907},"2":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"29":{"tf":4.795831523312719},"32":{"tf":3.1622776601683795},"36":{"tf":2.23606797749979},"39":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":2.8284271247461903},"5":{"tf":2.0},"50":{"tf":3.0},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":3.605551275463989},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"b":{"2":{"9":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"\"":{",":{"\"":{"a":{"c":{"a":{"a":{"1":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"1":{"\"":{",":{"\"":{"2":{"8":{"1":{"0":{"4":{"3":{"2":{"d":{"0":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":18,"docs":{"107":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"123":{"tf":4.795831523312719},"126":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.0},"135":{"tf":2.449489742783178},"137":{"tf":3.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"145":{"tf":2.6457513110645907}}},"df":17,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"29":{"tf":3.605551275463989},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":3.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"i":{"d":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":3.3166247903554}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"145":{"tf":1.0}}}}}}},"g":{"_":{"a":{"df":0,"docs":{},"p":{"c":{"c":{"_":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":31,"docs":{"103":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":4.0},"126":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"á":{"df":1,"docs":{"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"2":{"tf":2.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"104":{"tf":2.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"134":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0}},"n":{"df":1,"docs":{"126":{"tf":1.0}}},"r":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}},"u":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"162":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"d":{"df":23,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"h":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"114":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"0":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"160":{"tf":2.0},"83":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"é":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":3,"docs":{"103":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}},"df":3,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":2,"docs":{"62":{"tf":1.0},"94":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"á":{"df":1,"docs":{"136":{"tf":1.0}}}}},"v":{"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"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":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"í":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"142":{"tf":1.0}}}},"v":{"df":5,"docs":{"104":{"tf":2.0},"127":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951}}}}}}}},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"[":{"1":{":":{"1":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"b":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.0},"106":{"tf":1.0},"130":{"tf":3.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"177":{"tf":1.4142135623730951},"2":{"tf":2.0},"36":{"tf":2.8284271247461903},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"40":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"167":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"134":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":3,"docs":{"135":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0},"75":{"tf":1.0}},"o":{"df":13,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"172":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"62":{"tf":2.449489742783178}},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":2,"docs":{"50":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"j":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}},"m":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"n":{"a":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":7,"docs":{"120":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"*":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}}}},"i":{":":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"s":{"4":{"1":{"4":{"6":{"7":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":3.872983346207417},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.872983346207417},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"134":{"tf":1.7320508075688772},"2":{"tf":1.0},"40":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"t":{"df":4,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"c":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"32":{"tf":3.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"40":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"=":{"2":{"0":{"0":{"df":1,"docs":{"27":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"1":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":2.23606797749979},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.3166247903554},"61":{"tf":3.4641016151377544},"64":{"tf":2.0},"67":{"tf":2.0},"70":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"v":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":2,"docs":{"104":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"ñ":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"df":4,"docs":{"162":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"d":{"/":{"a":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":4.242640687119285},"18":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"_":{"0":{"0":{"0":{"0":{"2":{"7":{"4":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"_":{"2":{"0":{"1":{"5":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":2.449489742783178},"127":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"33":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178}},"e":{"c":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"152":{"tf":1.0}},"s":{"df":1,"docs":{"106":{"tf":2.449489742783178}}}}},"df":2,"docs":{"133":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":26,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":2.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.449489742783178},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":1.0}}}}}}}},"l":{"df":54,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":6.244997998398398},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"123":{"tf":3.605551275463989},"126":{"tf":3.872983346207417},"127":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":3.605551275463989},"139":{"tf":2.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.8284271247461903},"144":{"tf":1.0},"145":{"tf":3.872983346207417},"146":{"tf":2.6457513110645907},"147":{"tf":2.8284271247461903},"148":{"tf":1.0},"149":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"n":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":2,"docs":{"130":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}},"m":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"133":{"tf":3.3166247903554},"134":{"tf":3.4641016151377544},"177":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"39":{"tf":2.8284271247461903},"4":{"tf":1.7320508075688772},"40":{"tf":3.3166247903554},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"73":{"tf":1.0}},"e":{"0":{"0":{"0":{"0":{"9":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"5":{"7":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"í":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"140":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":2.0},"158":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"134":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979}}}}}}}},"d":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}},"o":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":60,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":4.58257569495584},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.6457513110645907},"113":{"tf":1.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.449489742783178},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":3.605551275463989},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":3.605551275463989},"139":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.3166247903554},"144":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":3.3166247903554},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":2.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":2.23606797749979},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"136":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.0},"49":{"tf":1.7320508075688772}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":12,"docs":{"100":{"tf":2.0},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":2.6457513110645907},"177":{"tf":2.0},"2":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"120":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"5":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0}}}}}},"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":45,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"114":{"tf":2.0},"12":{"tf":2.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"177":{"tf":2.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"c":{"a":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"8":{"0":{"2":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"154":{"tf":2.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"3":{"8":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"3":{"1":{"7":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"5":{"3":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"4":{"3":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"5":{"3":{"7":{"df":1,"docs":{"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"9":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":2.0},"146":{"tf":1.4142135623730951},"4":{"tf":2.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"2":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"7":{"8":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"9":{"3":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"1":{"9":{"4":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":5.291502622129181}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"9":{"6":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"8":{"9":{"5":{"df":2,"docs":{"135":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"5":{"4":{"0":{"5":{"df":2,"docs":{"124":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"9":{"1":{"6":{"3":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"0":{"0":{"2":{"2":{"9":{"1":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"4":{"9":{"1":{"5":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"3":{"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"1":{"1":{"1":{"df":2,"docs":{"61":{"tf":1.0},"62":{"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":{}},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":2,"docs":{"15":{"tf":1.0},"16":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"7":{"2":{"4":{"3":{".":{"7":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"4":{"4":{"1":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"8":{"1":{"2":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"2":{"5":{"1":{"9":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"1":{"9":{"1":{"4":{"df":1,"docs":{"59":{"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":{}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"2":{"5":{"6":{"6":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":3.4641016151377544}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"126":{"tf":1.0},"32":{"tf":1.0},"64":{"tf":3.4641016151377544}}},"y":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"p":{"d":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"d":{"a":{"df":6,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.0}},"i":{"df":4,"docs":{"145":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"104":{"tf":1.0},"131":{"tf":1.0}}}},"df":1,"docs":{"148":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}}}},"í":{"df":1,"docs":{"163":{"tf":1.0}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":2.0},"4":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":3.1622776601683795},"143":{"tf":1.0},"167":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":2.0},"108":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"173":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"103":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":22,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":2,"docs":{"137":{"tf":1.0},"148":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"í":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"e":{"c":{"df":3,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{},"z":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":15,"docs":{"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"111":{"tf":2.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"á":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"163":{"tf":1.0}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":20,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":3.3166247903554},"148":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"p":{"a":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"126":{"tf":2.0},"32":{"tf":1.7320508075688772},"61":{"tf":1.0}}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"177":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}},"o":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"139":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"54":{"tf":1.0}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"107":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":30,"docs":{"13":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"22":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"h":{"5":{"a":{"d":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"d":{"a":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"í":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"166":{"tf":1.0}}}}},"s":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"12":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":2.8284271247461903},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":3,"docs":{"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":1,"docs":{"96":{"tf":1.0}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"f":{"1":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}},"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"136":{"tf":1.0},"32":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":13,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0}},"o":{"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"q":{"df":7,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":24,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"68":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"c":{"df":1,"docs":{"61":{"tf":1.0}}},"d":{"df":2,"docs":{"26":{"tf":1.0},"61":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0}}}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"]":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"0":{"tf":1.0},"15":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"55":{"tf":1.0}}}},"f":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"g":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"26":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":30,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":3.605551275463989},"59":{"tf":3.1622776601683795},"6":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.0},"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"61":{"tf":1.0}},"e":{"=":{"'":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":10,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":3.872983346207417},"62":{"tf":1.4142135623730951},"81":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"2":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"d":{"df":12,"docs":{"104":{"tf":1.0},"12":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"101":{"tf":1.0}}},"x":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":2.8284271247461903},"81":{"tf":1.0}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"g":{"df":26,"docs":{"12":{"tf":2.23606797749979},"126":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"46":{"tf":2.6457513110645907},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"3":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":2.0},"50":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}}},"y":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":1,"docs":{"61":{"tf":1.0}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":30,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}},"m":{"a":{"df":5,"docs":{"104":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"168":{"tf":1.0},"174":{"tf":1.0}},"t":{"df":27,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":2.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":1,"docs":{"162":{"tf":1.0}}},"o":{"df":24,"docs":{"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":2.0},"154":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"70":{"tf":1.4142135623730951},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"40":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"137":{"tf":1.0},"176":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"50":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}},"p":{"df":8,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"2":{"tf":2.0},"4":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.0}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":5,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"164":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"163":{"tf":1.7320508075688772}}}}}}},"í":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"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":{}},"2":{"2":{"4":{"4":{"1":{"1":{"a":{">":{"c":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"1":{"1":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"a":{"(":{"a":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"140":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"53":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"53":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"c":{"c":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.0},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"1":{"6":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}},"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}},"f":{"2":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":8,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"1":{"tf":1.0},"12":{"tf":1.0}}},"(":{"df":1,"docs":{"4":{"tf":1.0}}},"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":2.23606797749979}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":2.449489742783178},"100":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.6457513110645907},"106":{"tf":2.0},"114":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":3.605551275463989},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":2.449489742783178},"177":{"tf":2.0},"2":{"tf":2.8284271247461903},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"29":{"tf":2.449489742783178},"30":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"46":{"tf":3.7416573867739413},"47":{"tf":3.7416573867739413},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":4.898979485566356},"67":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.4142135623730951}},"r":{"a":{"d":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}},"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"137":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}}},"t":{"df":1,"docs":{"62":{"tf":1.0}}},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"→":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.0},"35":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":1,"docs":{"16":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"67":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"160":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"f":{"df":0,"docs":{},"p":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"$":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"'":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}},".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"4":{"7":{"2":{"5":{"df":1,"docs":{"16":{"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":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"146":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":1.0},"142":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}},"s":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"1":{"6":{"9":{"1":{"9":{"4":{"df":1,"docs":{"62":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"b":{"(":{"\"":{"1":{"df":0,"docs":{},"r":{"4":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"k":{"4":{"2":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"3":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"7":{"c":{"df":0,"docs":{},"t":{"5":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"q":{"a":{"df":2,"docs":{"146":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{"df":2,"docs":{"146":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"148":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"a":{"df":2,"docs":{"150":{"tf":1.0},"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":{}}},"df":0,"docs":{},"q":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"0":{"2":{"3":{"4":{"df":4,"docs":{"106":{"tf":1.0},"146":{"tf":1.0},"4":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"152":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"133":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"“":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":146,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":4.898979485566356},"10":{"tf":1.7320508075688772},"100":{"tf":4.58257569495584},"101":{"tf":1.0},"102":{"tf":2.449489742783178},"103":{"tf":4.898979485566356},"104":{"tf":8.660254037844387},"105":{"tf":1.7320508075688772},"106":{"tf":4.795831523312719},"107":{"tf":3.0},"108":{"tf":3.3166247903554},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"12":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"13":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":3.1622776601683795},"134":{"tf":2.23606797749979},"135":{"tf":2.0},"136":{"tf":3.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":3.1622776601683795},"147":{"tf":2.0},"148":{"tf":2.8284271247461903},"149":{"tf":2.23606797749979},"15":{"tf":2.6457513110645907},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"177":{"tf":4.58257569495584},"178":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":2.0},"2":{"tf":9.273618495495704},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"4":{"tf":4.69041575982343},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":3.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":3.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"6":{"tf":3.3166247903554},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":4.358898943540674},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"t":{"df":2,"docs":{"163":{"tf":1.0},"86":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"6":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"155":{"tf":1.7320508075688772},"160":{"tf":2.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":5,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":0,"docs":{},"w":{"3":{"7":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"o":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}},"l":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":2.8284271247461903},"138":{"tf":2.0},"2":{"tf":1.4142135623730951},"50":{"tf":2.6457513110645907},"51":{"tf":2.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"2":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"df":3,"docs":{"147":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"_":{"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":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"61":{"tf":1.0}}}},"f":{",":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"59":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}},"i":{"c":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"p":{"3":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"d":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0}},"n":{"df":1,"docs":{"104":{"tf":1.0}}},"r":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}},"á":{"df":0,"docs":{},"n":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":11,"docs":{"4":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"94":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"í":{"a":{"df":13,"docs":{"106":{"tf":1.7320508075688772},"155":{"tf":2.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},"171":{"tf":1.7320508075688772},"176":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"2":{"0":{"1":{"9":{"df":2,"docs":{"135":{"tf":1.0},"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":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"é":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"166":{"tf":1.0}}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"h":{"5":{"a":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"g":{"a":{"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"50":{"tf":1.0}},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"107":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"y":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"176":{"tf":1.0}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"b":{"b":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":53,"docs":{"100":{"tf":3.1622776601683795},"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":40,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"g":{"3":{"8":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"b":{"c":{"df":0,"docs":{},"h":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"t":{"b":{"4":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"d":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"h":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"t":{"df":3,"docs":{"18":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":2.0},"123":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.4142135623730951},"4":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"u":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"p":{"_":{"0":{"0":{"0":{"0":{"9":{"6":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"124":{"tf":1.0},"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"0":{".":{"1":{"0":{"3":{"8":{"/":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"t":{".":{"3":{"5":{"1":{"9":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"3":{"1":{"7":{"6":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"4":{"1":{"5":{"8":{"6":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"t":{"a":{"c":{"8":{"3":{"6":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"0":{"9":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"a":{"a":{"7":{"9":{"3":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"9":{"7":{"5":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"0":{"5":{"2":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"/":{"2":{"0":{"2":{"1":{".":{"0":{"6":{".":{"2":{"0":{".":{"4":{"4":{"9":{"1":{"6":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"4":{".":{"4":{"6":{"3":{"0":{"3":{"4":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"/":{"1":{"4":{"7":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"1":{"0":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"/":{"1":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"0":{"0":{"0":{"0":{"0":{"0":{"3":{"4":{"7":{"1":{"3":{"df":2,"docs":{"150":{"tf":1.0},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"176":{"tf":2.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"49":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"124":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"46":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"o":{"df":6,"docs":{"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.449489742783178},"177":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"g":{"c":{"df":2,"docs":{"126":{"tf":2.0},"32":{"tf":2.0}}},"df":0,"docs":{}}},"d":{"(":{"df":2,"docs":{"123":{"tf":3.3166247903554},"29":{"tf":3.4641016151377544}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":2.6457513110645907},"106":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":3.4641016151377544},"146":{"tf":3.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"2":{"tf":2.6457513110645907},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":2.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":3.1622776601683795},"62":{"tf":2.449489742783178},"64":{"tf":3.4641016151377544},"65":{"tf":3.3166247903554},"75":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"157":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"145":{"tf":2.8284271247461903},"58":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903}}}},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}},"l":{"1":{"3":{"df":1,"docs":{"62":{"tf":3.0}},"r":{"a":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":2.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":6,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":15,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":3.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"167":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"a":{"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":14,"docs":{"101":{"tf":1.0},"2":{"tf":1.7320508075688772},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.0},"139":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"s":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":5,"docs":{"107":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.4142135623730951},"173":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0}}}},"df":2,"docs":{"149":{"tf":1.7320508075688772},"169":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"2":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"r":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"x":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"i":{"c":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}},"r":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"143":{"tf":1.0}}}},"df":4,"docs":{"58":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":3.4641016151377544},"4":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}},"ó":{"df":0,"docs":{},"n":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"148":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":35,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":2.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"a":{"df":2,"docs":{"107":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"114":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":3,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}},"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"2":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":3.4641016151377544},"59":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}}}},"r":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0}}}},"df":1,"docs":{"152":{"tf":1.0}},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"107":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}}},"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}},"l":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":5,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"64":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":3,"docs":{"104":{"tf":1.0},"145":{"tf":1.7320508075688772},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":7,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.8284271247461903},"62":{"tf":3.0},"65":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":2,"docs":{"107":{"tf":1.0},"146":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"166":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"ú":{"a":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.0},"19":{"tf":1.0},"81":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"2":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"‑":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"é":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"27":{"tf":2.0}}}}}}},"r":{"a":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"a":{"1":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"8":{"\"":{",":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"140":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":4,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"142":{"tf":1.0},"153":{"tf":1.0}}},"df":3,"docs":{"153":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"104":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":2.23606797749979},"158":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"62":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":1.7320508075688772},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":14,"docs":{"100":{"tf":5.477225575051661},"11":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":5.477225575051661},"20":{"tf":1.0},"28":{"tf":2.8284271247461903},"45":{"tf":1.0},"54":{"tf":2.6457513110645907},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":2.0},"77":{"tf":2.0}},"e":{"df":8,"docs":{"100":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"28":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"ú":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"g":{"df":8,"docs":{"100":{"tf":2.6457513110645907},"129":{"tf":1.0},"177":{"tf":2.6457513110645907},"35":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"u":{"df":1,"docs":{"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"9":{"8":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"15":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":40,"docs":{"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"162":{"tf":1.0},"18":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"u":{"b":{"b":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"2":{"tf":1.0}},"e":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"y":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"k":{"=":{"3":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"1":{"df":0,"docs":{},"l":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"k":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":14,"docs":{"100":{"tf":3.4641016151377544},"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"177":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"_":{"2":{"0":{"1":{"5":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"136":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"_":{"2":{"0":{"2":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"2":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}}}},"h":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"y":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"25":{"tf":2.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"101":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"m":{"df":5,"docs":{"100":{"tf":1.7320508075688772},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ä":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"l":{"a":{"(":{"df":1,"docs":{"153":{"tf":1.0}}},"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":6,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"2":{"tf":2.0},"3":{"tf":1.0},"4":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":6,"docs":{"136":{"tf":1.4142135623730951},"158":{"tf":1.0},"29":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"81":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":54,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":3.1622776601683795},"104":{"tf":7.3484692283495345},"106":{"tf":3.3166247903554},"107":{"tf":3.7416573867739413},"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":2.8284271247461903},"118":{"tf":1.7320508075688772},"120":{"tf":2.6457513110645907},"123":{"tf":3.3166247903554},"124":{"tf":1.0},"126":{"tf":4.358898943540674},"128":{"tf":1.4142135623730951},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"133":{"tf":3.605551275463989},"134":{"tf":2.449489742783178},"135":{"tf":3.872983346207417},"136":{"tf":2.8284271247461903},"137":{"tf":3.1622776601683795},"139":{"tf":3.3166247903554},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":6.324555320336759},"145":{"tf":3.872983346207417},"146":{"tf":3.3166247903554},"147":{"tf":4.123105625617661},"148":{"tf":2.0},"149":{"tf":4.47213595499958},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"163":{"tf":2.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.23606797749979},"178":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"f":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"p":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"147":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"c":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"df":39,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":4.47213595499958},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"14":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"72":{"tf":2.449489742783178},"77":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":2,"docs":{"103":{"tf":1.0},"155":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"j":{"df":3,"docs":{"137":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"64":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"166":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"g":{"_":{"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"z":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0}}},"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"0":{"0":{"6":{"6":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"3":{"1":{"4":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":30,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":2.0},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":13,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":4.58257569495584},"130":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"136":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":4.795831523312719},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"a":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}},"r":{"df":17,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"c":{"1":{"0":{"0":{"0":{"4":{"7":{"2":{"1":{"4":{"\"":{",":{"\"":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"2":{"\"":{",":{"\"":{"2":{"4":{"1":{"0":{"0":{"1":{"2":{"df":0,"docs":{},"h":{"2":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"a":{"2":{"3":{"0":{"0":{"6":{"2":{"df":0,"docs":{},"g":{"0":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"9":{"8":{"1":{"5":{"9":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"5":{"4":{"3":{"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"3":{"1":{"1":{"7":{"2":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"4":{"5":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.0},"177":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.0}}}},"df":1,"docs":{"62":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.291502622129181},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":3.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":2.8284271247461903},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":3.1622776601683795},"141":{"tf":1.7320508075688772},"143":{"tf":3.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":3.3166247903554},"148":{"tf":2.0},"149":{"tf":3.1622776601683795},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.7320508075688772}},"g":{"1":{"0":{"(":{"0":{".":{"0":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"170":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"6":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"u":{"c":{"df":0,"docs":{},"í":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.0},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"4":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"m":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"\"":{",":{"\"":{"2":{"3":{"1":{"0":{"0":{"2":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"'":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"a":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"a":{"df":0,"docs":{},"q":{"a":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"107":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}},"n":{"df":1,"docs":{"59":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":22,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":2,"docs":{"155":{"tf":1.0},"162":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"l":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"p":{"3":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"c":{"a":{"df":1,"docs":{"104":{"tf":1.0}},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"h":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":3,"docs":{"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0}}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"k":{"df":3,"docs":{"46":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"z":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"2":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"40":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}},"z":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":4,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}}}},"y":{";":{"2":{"(":{"5":{")":{":":{"4":{"0":{"1":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"’":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}},"d":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"100":{"tf":5.656854249492381},"137":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":5.656854249492381},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.4641016151377544},"58":{"tf":1.0},"59":{"tf":2.0},"63":{"tf":2.0},"69":{"tf":2.6457513110645907},"72":{"tf":2.6457513110645907},"77":{"tf":2.6457513110645907},"85":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"62":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"92":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"107":{"tf":1.0},"167":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"j":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}},"g":{"df":6,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":6,"docs":{"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"a":{"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}},"e":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"ú":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"s":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"25":{"tf":1.0}}}},"l":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"l":{"2":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"m":{"3":{"9":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{"b":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.4142135623730951},"177":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"74":{"tf":1.0}},"o":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":2,"docs":{"126":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":2,"docs":{"126":{"tf":1.0},"170":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"140":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":3.872983346207417},"24":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":2.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":31,"docs":{"13":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.8284271247461903},"43":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"o":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"120":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"r":{"df":9,"docs":{"100":{"tf":2.0},"107":{"tf":1.0},"177":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"2":{"0":{"2":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"l":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.23606797749979},"142":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"106":{"tf":2.0},"142":{"tf":1.4142135623730951},"4":{"tf":2.0},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"134":{"tf":1.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":3.0},"139":{"tf":1.0},"149":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"5":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0}}}}},"í":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951}},"s":{"_":{"d":{"b":{"a":{"2":{"df":0,"docs":{},"j":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"1":{"0":{"5":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}},"e":{"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"q":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"126":{"tf":3.4641016151377544},"127":{"tf":1.0},"143":{"tf":2.449489742783178}}}},"ó":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":3.1622776601683795},"144":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":1,"docs":{"143":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"58":{"tf":3.1622776601683795}}}},"r":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}},"t":{"df":18,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":3.3166247903554},"144":{"tf":2.0},"177":{"tf":1.0},"2":{"tf":3.1622776601683795},"27":{"tf":3.1622776601683795},"32":{"tf":4.242640687119285},"33":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":6.782329983125268},"59":{"tf":4.242640687119285},"60":{"tf":1.4142135623730951},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":1,"docs":{"58":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"y":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"v":{"df":4,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"49":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"à":{"df":3,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0}}},"á":{"df":18,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"á":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":3.7416573867739413},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"ú":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}}}}},"n":{".":{"d":{"df":4,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"62":{"tf":1.0}}},"df":19,"docs":{"118":{"tf":1.4142135623730951},"12":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"n":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"p":{"1":{"df":0,"docs":{},"l":{"1":{"\"":{",":{"\"":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"5":{"6":{"\"":{",":{"\"":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"p":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"50":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"b":{"df":0,"docs":{},"i":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"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":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"104":{"tf":1.4142135623730951},"139":{"tf":2.0},"2":{"tf":1.4142135623730951},"52":{"tf":2.0}}}},"df":1,"docs":{"26":{"tf":1.0}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"0":{"4":{"9":{"9":{"1":{"9":{"3":{"5":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":2.0},"35":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"c":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"2":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"4":{"tf":2.449489742783178}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":4.795831523312719},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"80":{"tf":2.0},"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"f":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"ú":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951}}}}}},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}},"r":{"df":0,"docs":{},"x":{"1":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"d":{"a":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.4142135623730951}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":10,"docs":{"104":{"tf":2.8284271247461903},"114":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":7,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":21,"docs":{"123":{"tf":4.47213595499958},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"29":{"tf":4.47213595499958},"32":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"‑":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"a":{"df":5,"docs":{"104":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"3":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.8284271247461903}}},"4":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":15,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"h":{"df":1,"docs":{"2":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":2.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":2.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"2":{"tf":4.242640687119285}}}},"r":{"d":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"49":{"tf":1.0}}},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"m":{"c":{"df":0,"docs":{},"e":{"4":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"3":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"100":{"tf":3.605551275463989},"129":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":3.605551275463989},"35":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"1":{"tf":2.23606797749979},"18":{"tf":2.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":9,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"x":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":5,"docs":{"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}}}}},"v":{"a":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":4,"docs":{"104":{"tf":4.0},"137":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":2.0}},"s":{"/":{"1":{"0":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"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":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":6,"docs":{"104":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"123":{"tf":1.0}},"g":{"a":{"df":9,"docs":{"106":{"tf":2.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{";":{"2":{"(":{"1":{"0":{")":{":":{"9":{"6":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0}}}},"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":78,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":2.0},"104":{"tf":1.4142135623730951},"106":{"tf":2.8284271247461903},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"114":{"tf":3.0},"117":{"tf":3.1622776601683795},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":3.1622776601683795},"123":{"tf":5.196152422706632},"124":{"tf":1.4142135623730951},"126":{"tf":2.8284271247461903},"130":{"tf":3.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"141":{"tf":2.6457513110645907},"142":{"tf":1.0},"143":{"tf":3.0},"144":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":2.0},"149":{"tf":3.3166247903554},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":9,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":16,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.0},"123":{"tf":2.6457513110645907},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"29":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951}},"í":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"137":{"tf":2.8284271247461903},"50":{"tf":2.6457513110645907}}}},"df":12,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"=":{"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"100":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}},"df":23,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.23606797749979},"29":{"tf":2.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":3.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"134":{"tf":1.4142135623730951},"177":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":3,"docs":{"160":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"t":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"2":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":4,"docs":{"104":{"tf":1.0},"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"1":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"í":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"2":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"r":{"a":{"df":20,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":7,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"142":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":43,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"26":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":3.1622776601683795},"59":{"tf":2.0},"61":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"12":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}}}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"2":{"4":{"3":{"9":{"4":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"7":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"3":{"5":{"2":{"2":{"5":{"df":1,"docs":{"62":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"5":{"2":{"0":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"5":{"5":{"2":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"131":{"tf":2.0},"37":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"a":{"b":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"103":{"tf":1.0},"137":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"2":{"0":{"2":{"1":{"df":2,"docs":{"135":{"tf":1.0},"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":{}}}},"r":{"a":{"df":46,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":6.324555320336759},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.605551275463989},"108":{"tf":2.449489742783178},"114":{"tf":3.3166247903554},"115":{"tf":1.0},"117":{"tf":4.0},"120":{"tf":3.3166247903554},"121":{"tf":1.0},"123":{"tf":3.0},"126":{"tf":4.358898943540674},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"133":{"tf":3.0},"135":{"tf":4.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":3.7416573867739413},"141":{"tf":2.8284271247461903},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":2.6457513110645907},"147":{"tf":3.3166247903554},"148":{"tf":1.4142135623730951},"149":{"tf":3.7416573867739413},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.6457513110645907},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"172":{"tf":1.0},"32":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"r":{"df":4,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"á":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":22,"docs":{"104":{"tf":2.23606797749979},"107":{"tf":2.449489742783178},"114":{"tf":2.449489742783178},"117":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"123":{"tf":2.449489742783178},"126":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":2.6457513110645907},"136":{"tf":1.4142135623730951},"137":{"tf":2.6457513110645907},"139":{"tf":2.449489742783178},"141":{"tf":2.449489742783178},"143":{"tf":2.6457513110645907},"145":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"149":{"tf":2.6457513110645907},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"162":{"tf":1.4142135623730951}}}}}}}}},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":1,"docs":{"149":{"tf":1.0}},"r":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":9,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"36":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0}}},"y":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"u":{"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":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"a":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}}},"d":{"b":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"a":{"df":6,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"18":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":3.3166247903554},"139":{"tf":2.0},"145":{"tf":3.605551275463989},"146":{"tf":4.898979485566356},"177":{"tf":1.0},"2":{"tf":2.23606797749979},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":3.3166247903554},"64":{"tf":3.605551275463989},"65":{"tf":4.898979485566356},"66":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"d":{"1":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"z":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}}},"df":32,"docs":{"100":{"tf":3.1622776601683795},"104":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"153":{"tf":1.0},"177":{"tf":3.1622776601683795},"18":{"tf":1.0},"28":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"t":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}}}},"o":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"a":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"l":{"df":1,"docs":{"167":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"b":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"f":{"1":{"4":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"2":{"1":{"a":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"p":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"ž":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}},"p":{"df":8,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"142":{"tf":1.4142135623730951},"162":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"2":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"b":{"d":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":4.47213595499958},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"4":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"5":{"tf":1.0}}}}}},"df":11,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"27":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"m":{"c":{"1":{"0":{"2":{"4":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"0":{"0":{"8":{"9":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"7":{"8":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"5":{"1":{"8":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"5":{"6":{"0":{"3":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"6":{"0":{"3":{"0":{"7":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"2":{"3":{"9":{"0":{"3":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"2":{"4":{"8":{"3":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"2":{"5":{"5":{"7":{"2":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"6":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}},"i":{"d":{"df":14,"docs":{"100":{"tf":3.4641016151377544},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.4641016151377544},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"100":{"tf":3.605551275463989},"119":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.605551275463989},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"p":{"c":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"í":{"a":{"df":2,"docs":{"139":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"145":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"m":{"df":0,"docs":{},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"145":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"í":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":39,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":4.898979485566356},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"133":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"178":{"tf":1.4142135623730951}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":19,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"167":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"m":{"1":{"b":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"136":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"126":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951}},"h":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"65":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":6,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":2.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"123":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"32":{"tf":1.0},"64":{"tf":1.0}},"o":{"df":1,"docs":{"126":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}},"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}},"o":{"df":4,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":1,"docs":{"145":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"d":{"a":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"d":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.4142135623730951}}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"2":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0}},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"107":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"167":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":16,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0}}},"df":7,"docs":{"117":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":16,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}},"s":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"32":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"26":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"133":{"tf":1.0}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"_":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":33,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":4.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"⇄":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":12,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":2,"docs":{"2":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":11,"docs":{"101":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"é":{"df":3,"docs":{"107":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"126":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"b":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}},"n":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"ó":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"1":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"169":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"m":{"df":4,"docs":{"126":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":26,"docs":{"104":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":7,"docs":{"155":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"3":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"146":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":89,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":3.0},"136":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":3.1622776601683795},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.23606797749979},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.0},"18":{"tf":2.6457513110645907},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":2.23606797749979},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"32":{"tf":2.6457513110645907},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":2.6457513110645907},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.0},"47":{"tf":2.449489742783178},"5":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":3.1622776601683795},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"á":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}}}},"é":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"ú":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":3,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"167":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"0":{"2":{"4":{"1":{"0":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{"6":{"2":{"7":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"3":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"4":{"df":2,"docs":{"108":{"tf":1.0},"6":{"tf":1.0}}},"8":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}},"u":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0}},"e":{"df":41,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":3.7416573867739413},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0}},"j":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"121":{"tf":1.0},"22":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"t":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772}}}},"r":{"a":{"b":{"1":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.7320508075688772},"120":{"tf":1.0}}}}},"z":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"b":{"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":{"167":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"168":{"tf":1.0}}}},"u":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"m":{"1":{"1":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":4,"docs":{"135":{"tf":1.0},"136":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":2.0}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}},"s":{"b":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":33,"docs":{"100":{"tf":4.242640687119285},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"162":{"tf":1.0},"177":{"tf":4.242640687119285},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":3.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"29":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"135":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"19":{"tf":1.0},"53":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"i":{"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"5":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"u":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"100":{"tf":3.3166247903554},"122":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"23":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"df":15,"docs":{"100":{"tf":1.0},"104":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":3.1622776601683795},"177":{"tf":1.0},"2":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":3.0},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"177":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"a":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"4":{"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":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"a":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"148":{"tf":1.7320508075688772}},"r":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"d":{"a":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.0},"2":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"58":{"tf":1.0}},"g":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":12,"docs":{"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":3.7416573867739413},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"df":4,"docs":{"139":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"133":{"tf":1.0},"2":{"tf":1.0}}}},"df":3,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"149":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"136":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"133":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"34":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.8284271247461903}},"e":{"=":{"1":{"0":{"3":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.7320508075688772},"91":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":5,"docs":{"107":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"162":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":4,"docs":{"155":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"134":{"tf":1.0},"40":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"104":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"2":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"15":{"tf":1.0},"2":{"tf":2.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":2.23606797749979},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.23606797749979},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"133":{"tf":1.0},"145":{"tf":1.0},"177":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":3.4641016151377544},"64":{"tf":1.7320508075688772}},"e":{"=":{"'":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"59":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":1,"docs":{"155":{"tf":1.0}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"93":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":24,"docs":{"104":{"tf":3.0},"107":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":2.6457513110645907},"118":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":3.1622776601683795},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":3.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":28,"docs":{"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":3.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"32":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":2.23606797749979},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"75":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":42,"docs":{"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":2.0},"61":{"tf":2.23606797749979},"62":{"tf":3.3166247903554},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":3.3166247903554},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}},"h":{"a":{"b":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"t":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{},"f":{"4":{"3":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"o":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}},"l":{"d":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":3.872983346207417}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"w":{"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"2":{"9":{"5":{"6":{"8":{"6":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"103":{"tf":1.0}}}},"n":{"df":10,"docs":{"162":{"tf":1.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":2.0},"52":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"t":{"a":{"/":{"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":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"7":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"p":{"d":{"b":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"d":{"d":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"s":{"2":{"8":{"8":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}},"a":{"c":{"3":{"d":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"6":{"2":{"3":{"4":{"5":{"1":{"\"":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"2":{"\"":{",":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"2":{"\"":{",":{"\"":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"h":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":16,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"12":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"32":{"tf":3.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}}},"n":{"a":{"df":1,"docs":{"166":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"134":{"tf":1.7320508075688772},"148":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}},"r":{"a":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":4,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"v":{"a":{"d":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":29,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":25,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"b":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":4,"docs":{"106":{"tf":1.0},"124":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"100":{"tf":5.744562646538029},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":3.1622776601683795},"63":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"a":{"df":4,"docs":{"104":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0}},"n":{"df":1,"docs":{"162":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"104":{"tf":3.0},"106":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.0},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"149":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"2":{"2":{"c":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"a":{"(":{"df":3,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0}}},"df":22,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"106":{"tf":3.0},"107":{"tf":2.0},"108":{"tf":2.0},"117":{"tf":2.449489742783178},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.47213595499958},"144":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":1.7320508075688772},"153":{"tf":2.0},"154":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":40,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"104":{"tf":5.385164807134504},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"114":{"tf":2.8284271247461903},"115":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"126":{"tf":3.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":3.4641016151377544},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"155":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":11,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"99":{"tf":1.0}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"ú":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"114":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":2.6457513110645907},"177":{"tf":1.0},"36":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.8284271247461903},"70":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":1,"docs":{"2":{"tf":1.0}},"h":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"q":{"0":{"df":2,"docs":{"131":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772}}},"1":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"144":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"131":{"tf":1.0},"143":{"tf":1.4142135623730951},"37":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{"]":{"_":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"=":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"143":{"tf":2.0},"58":{"tf":2.0}}},"df":0,"docs":{}}},"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"2":{"tf":2.449489742783178},"4":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":30,"docs":{"1":{"tf":2.8284271247461903},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"18":{"tf":2.6457513110645907},"19":{"tf":2.0},"2":{"tf":3.605551275463989},"21":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":2.8284271247461903},"40":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":7.0},"59":{"tf":3.605551275463989},"6":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"75":{"tf":2.0},"76":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"58":{"tf":1.0},"75":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":19,"docs":{"107":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}},"i":{"df":2,"docs":{"174":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"df":4,"docs":{"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}},"t":{"df":11,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":18,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":3.0},"40":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"89":{"tf":1.0}},"o":{"(":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"ñ":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"f":{"df":6,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"x":{"df":0,"docs":{},"n":{"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951}}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"5":{"tf":1.0}}}},"df":34,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"177":{"tf":4.47213595499958}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"148":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":1,"docs":{"62":{"tf":1.0}}},"u":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"v":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"108":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"n":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"h":{"a":{"df":7,"docs":{"100":{"tf":2.0},"177":{"tf":2.0},"28":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}},"ó":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"40":{"tf":2.6457513110645907}}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"j":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"i":{"1":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"l":{"c":{"2":{"5":{"a":{"3":{"9":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"a":{"1":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"30":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"a":{"6":{"df":0,"docs":{},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"s":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"2":{"b":{"\"":{",":{"\"":{"4":{"9":{"3":{"2":{"4":{"3":{"8":{"a":{"1":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"c":{"8":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"\"":{",":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"129":{"tf":1.0},"177":{"tf":1.7320508075688772},"35":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"o":{":":{"0":{"0":{"0":{"2":{"0":{"7":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"133":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":4,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"137":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951}}},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"á":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"k":{"a":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":21,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"d":{"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":17,"docs":{"114":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":2.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"=":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"7":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"df":9,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"59":{"tf":1.0},"62":{"tf":2.8284271247461903},"68":{"tf":1.0},"70":{"tf":1.7320508075688772}},"i":{"df":29,"docs":{"1":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":2.8284271247461903},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":2.0}},"i":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":1,"docs":{"29":{"tf":1.0}}},"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"0":{"tf":1.0},"102":{"tf":1.0}},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":7,"docs":{"160":{"tf":1.0},"4":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}},"t":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":7,"docs":{"100":{"tf":1.0},"120":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"137":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"'":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":11,"docs":{"107":{"tf":1.4142135623730951},"123":{"tf":4.58257569495584},"130":{"tf":2.449489742783178},"133":{"tf":2.0},"137":{"tf":2.23606797749979},"29":{"tf":4.58257569495584},"36":{"tf":2.449489742783178},"39":{"tf":2.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"9":{"tf":2.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":3.0},"32":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"1":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"b":{"df":0,"docs":{},"p":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"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":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}},"df":24,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"139":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.0},"2":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"2":{"tf":1.0},"37":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{";":{"a":{"c":{"c":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"c":{":":{"1":{"3":{"2":{"9":{"1":{"df":4,"docs":{"140":{"tf":1.0},"150":{"tf":1.0},"53":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"140":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"127":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"106":{"tf":1.0},"136":{"tf":1.0},"4":{"tf":1.0},"47":{"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":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":2.0}}}}}}},"z":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"‐":{"df":0,"docs":{},"s":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"é":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"í":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"ó":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"167":{"tf":1.0}}}},"n":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}},"t":{"2":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}},"a":{"b":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"114":{"tf":1.0},"123":{"tf":1.0}}},"df":1,"docs":{"12":{"tf":1.0}}}},"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"2":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"144":{"tf":2.0},"59":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"m":{"a":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"é":{"df":0,"docs":{},"n":{"df":14,"docs":{"104":{"tf":3.1622776601683795},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":4.242640687119285}}}}}},"df":0,"docs":{}},"n":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":2,"docs":{"115":{"tf":1.0},"13":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"d":{"a":{"d":{"a":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"126":{"tf":1.0},"32":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":2.0},"129":{"tf":1.0},"177":{"tf":2.0},"35":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"118":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}},"x":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":4.123105625617661},"104":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.4142135623730951},"177":{"tf":4.123105625617661},"2":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"164":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"123":{"tf":2.0},"126":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"df":3,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"151":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":6,"docs":{"123":{"tf":2.23606797749979},"29":{"tf":2.23606797749979},"32":{"tf":1.0},"70":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"117":{"tf":2.23606797749979},"120":{"tf":2.23606797749979},"123":{"tf":2.0},"126":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":2.23606797749979},"134":{"tf":1.0},"135":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"145":{"tf":1.4142135623730951},"147":{"tf":2.0},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"40":{"tf":1.0},"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"50":{"tf":1.0},"85":{"tf":2.23606797749979}},"i":{"df":1,"docs":{"62":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"162":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":3.4641016151377544},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"o":{"df":5,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":3.3166247903554},"139":{"tf":1.0},"149":{"tf":1.0}}}}}},"g":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"0":{"tf":1.0},"2":{"tf":1.7320508075688772},"47":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}}}}}},"i":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"5":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"140":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"n":{"df":2,"docs":{"157":{"tf":1.0},"162":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":19,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.6457513110645907},"126":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":2.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"29":{"tf":3.0},"30":{"tf":2.0},"32":{"tf":1.4142135623730951},"4":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"123":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}}},"j":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"m":{"2":{"d":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"c":{"1":{"\"":{",":{"\"":{"c":{"d":{"df":0,"docs":{},"h":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"2":{"1":{"9":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"28":{"tf":1.0},"66":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}},"d":{"a":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"114":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"170":{"tf":1.0}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"á":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"7":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"á":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":2.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":4,"docs":{"136":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":2.0},"64":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"118":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"50":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}},"r":{"a":{"b":{"a":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"177":{"tf":1.0}},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":14,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}},"u":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"b":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"139":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"136":{"tf":1.0},"147":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"4":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"d":{"%":{"2":{"0":{"d":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"120":{"tf":1.0},"21":{"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"é":{"df":6,"docs":{"136":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"167":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":39,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}}},"r":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"g":{"a":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"32":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}},"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"163":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"o":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"55":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":2,"docs":{"29":{"tf":1.0},"4":{"tf":1.0}}},"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"0":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"é":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":4,"docs":{"126":{"tf":1.0},"149":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"0":{"0":{"0":{"0":{"1":{"7":{"8":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"0":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"1":{"6":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"4":{"7":{"3":{"df":2,"docs":{"61":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"1":{"3":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"123":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772}}}}}},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"o":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"166":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"39":{"tf":1.0},"52":{"tf":1.0}},"f":{"c":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":4,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":48,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":2.8284271247461903},"104":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"df":37,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":2.8284271247461903},"104":{"tf":3.7416573867739413},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":2.449489742783178},"158":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.0},"104":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":1.4142135623730951},"139":{"tf":2.0},"145":{"tf":1.4142135623730951},"153":{"tf":1.0},"177":{"tf":2.0},"2":{"tf":2.6457513110645907},"39":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"137":{"tf":1.0},"162":{"tf":2.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"2":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":10,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}},"q":{"df":1,"docs":{"136":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":3.872983346207417}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"107":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":3.0},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"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":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":2,"docs":{"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"104":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0}}}},"s":{"a":{"d":{"a":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":18,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"114":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":2.0},"153":{"tf":1.4142135623730951}},"n":{"d":{"df":0,"docs":{},"o":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":1,"docs":{"114":{"tf":1.0}}},"r":{"df":8,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"178":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":79,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":4.58257569495584},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"2":{"tf":3.3166247903554},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"29":{"tf":2.8284271247461903},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.4142135623730951},"39":{"tf":3.0},"4":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":3.1622776601683795},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":2.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":3.3166247903554},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"o":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"104":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"z":{"a":{"d":{"a":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}},"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"177":{"tf":4.242640687119285},"178":{"tf":1.0}},"n":{"d":{"df":0,"docs":{},"o":{"df":8,"docs":{"104":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"df":1,"docs":{"115":{"tf":1.0}}},"r":{"df":2,"docs":{"143":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}}}}},"v":{"2":{".":{"3":{".":{"0":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}},"6":{"0":{"0":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{".":{"1":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":2,"docs":{"107":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"i":{"d":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.449489742783178},"61":{"tf":3.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"137":{"tf":2.23606797749979}}}},"u":{"df":10,"docs":{"117":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":2.23606797749979},"61":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"141":{"tf":1.0},"177":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"2":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":2,"docs":{"142":{"tf":1.0},"144":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"=":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"2":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":8,"docs":{"100":{"tf":1.7320508075688772},"162":{"tf":1.0},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":1,"docs":{"167":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":36,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":18,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0}},"i":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"2":{"tf":6.082762530298219},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"70":{"tf":1.0},"99":{"tf":1.0}}}},"ó":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"104":{"tf":6.0},"106":{"tf":1.0},"107":{"tf":2.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"2":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":9,"docs":{"106":{"tf":2.449489742783178},"107":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"i":{"a":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"108":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{".":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":2.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":2.0},"133":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":2.0},"45":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"107":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":2.0}}},"á":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"í":{"a":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"1":{"9":{"0":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.449489742783178},"116":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":2.449489742783178},"28":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"r":{"d":{"df":4,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"177":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"y":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"r":{"2":{"0":{"a":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"a":{"\"":{",":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{",":{"\"":{"2":{"6":{"1":{"0":{"5":{"2":{"8":{"df":0,"docs":{},"j":{"1":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"1":{"1":{"1":{"0":{"0":{"0":{"3":{"df":0,"docs":{},"e":{"0":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"h":{"1":{"\"":{",":{"\"":{"1":{"2":{"0":{"0":{"0":{"1":{"4":{"df":0,"docs":{},"m":{"1":{"4":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"100":{"tf":2.449489742783178},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"177":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":4,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"6":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"148":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"j":{"df":4,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0}}},"o":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":7,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":4,"docs":{"18":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"15":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"_":{"a":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{":":{"df":0,"docs":{},"g":{".":{"1":{"0":{"1":{"1":{"_":{"1":{"0":{"1":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"136":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"177":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"b":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":2,"docs":{"104":{"tf":1.0},"157":{"tf":1.0}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"2":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":4.58257569495584},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":2.449489742783178},"127":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":2.449489742783178},"137":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"177":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"l":{"a":{"b":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"136":{"tf":1.0},"47":{"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":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"t":{"b":{"4":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"3":{"df":0,"docs":{},"h":{"1":{"2":{"c":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"100":{"tf":3.3166247903554},"129":{"tf":1.0},"177":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"45":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"5":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{"8":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"5":{"\"":{",":{"\"":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"6":{"5":{"0":{"\"":{",":{"\"":{"4":{"7":{"3":{"2":{"4":{"6":{"6":{"d":{"1":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"\"":{",":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"c":{"4":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"2":{"0":{"df":2,"docs":{"136":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"o":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":3,"docs":{"100":{"tf":1.0},"177":{"tf":1.0},"49":{"tf":1.0}},"f":{"3":{"0":{"2":{"df":2,"docs":{"136":{"tf":2.0},"47":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":2,"docs":{"172":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"96":{"tf":1.0}}},"3":{"df":2,"docs":{"174":{"tf":1.0},"97":{"tf":1.0}}},"4":{"df":2,"docs":{"175":{"tf":1.0},"98":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":3,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"4":{"df":2,"docs":{"114":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"162":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"128":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"18":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"c":{"a":{"2":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"29":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"t":{"df":2,"docs":{"78":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}},"t":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"ó":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"128":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":18,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"m":{"df":4,"docs":{"133":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"á":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"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":1,"docs":{"42":{"tf":1.0}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"í":{"a":{"df":3,"docs":{"106":{"tf":1.0},"155":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"139":{"tf":1.0},"52":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":6,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"l":{"a":{"df":3,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":2,"docs":{"104":{"tf":1.0},"162":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}},"á":{"df":2,"docs":{"104":{"tf":1.0},"112":{"tf":1.0}}},"ó":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"166":{"tf":1.0},"167":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"b":{"df":2,"docs":{"145":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":10,"docs":{"118":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0}}}},"r":{"df":5,"docs":{"159":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"87":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"ó":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"9":{"tf":1.0}}}},"í":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"147":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"d":{"a":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"á":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"25":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}},"q":{"df":2,"docs":{"153":{"tf":1.0},"75":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"151":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"25":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"161":{"tf":1.0},"164":{"tf":1.0}}}},"t":{"df":0,"docs":{},"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":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"174":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"é":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":5,"docs":{"110":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/tomorrow-night.css b/tomorrow-night.css new file mode 100644 index 00000000..81fe276e --- /dev/null +++ b/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; +}